前端群-362632903、java群-513239897、.net群-317243636
jquery
jquery插件
jquery教程
jquery下载
css3
html5
jquery特效
jquery手册
热门关键字:
jquery
>
jquery教程
>
jquery教程
> jquery api 1.8中文版
jquery api 1.8中文版
2409
作者:
管理员
发布时间:
2014/3/25 9:37:00
评论数:
0
转载请自觉注明原文:
http://www.jq-school.com/Show.aspx?id=409
核心
jQuery 核心函数
jQuery([sel,[context]])
jQuery(html,[ownerDoc])
jQuery(callback)
jQuery 对象访问
each(callback)
size()
length
selector
context
get([index])
index([selector|element])
数据缓存
data([key],[value])
removeData([name|list])
1.7*
$.data(element,[key],[value])
队列控制
queue(element,[queueName])
dequeue([queueName])
clearQueue([queueName])
插件机制
jQuery.fn.extend(object)
jQuery.extend(object)
多库共存
jQuery.noConflict([ex])
属性
属性
attr(name|pro|key,val|fn)
removeAttr(name)
prop(name|pro|key,val|fn)
1.6+
removeProp(name)
1.6+
CSS 类
addClass(class|fn)
removeClass([class|fn])
toggleClass(class|fn[,sw])
HTML代码/文本/值
html([val|fn])
text([val|fn])
text([val|fn|arr])
CSS
CSS
css(name|pro|[,val|fn])
位置
offset([coordinates])
position()
scrollTop([val])
scrollLeft([val])
尺寸
heigh([val|fn])
width([val|fn])
innerHeight()
innerWidth()
outerHeight([soptions])
outerWidth([options])
选择器
基本
#id
element
.class
*
selector1,selector2,selectorN
层级
ancestor descendant
parent > child
prev + next
prev ~ siblings
基本
:first
:last
:not(selector)
:even
:odd
:eq(index)
:gt(index)
:lt(index)
:header
:animated
:focus
1.6+
内容
:contains(text)
:empty
:has(selector)
:parent
可见性
:hidden
:visible
属性
[attribute]
[attribute=value]
[attribute!=value]
[attribute^=value]
[attribute$=value]
[attribute*=value]
[attrSel1][attrSel2][attrSelN]
子元素
:nth-child
:first-child
:last-child
:only-child
表单
:input
:text
:password
:radio
:checkbox
:submit
:image
:reset
:button
:file
:hidden
表单对象属性
:enabled
:disabled
:checked
:selected
文档处理
内部插入
append(content|fn)
appendTo(content)
prepend(content|fn)
prependTo(content)
外部插入
after(content|fn)
before(content|fn)
insertAfter(content)
insertBefore(content)
包裹
wrap(html|ele|fn)
unwrap()
wrapall(html|ele)
wrapInner(html|ele|fn)
替换
replaceWith(content|fn)
replaceAll(selector)
删除
empty()
remove([expr])
detach([expr])
复制
clone([Even[,deepEven]])
筛选
过滤
eq(index|-index)
first()
last()
hasClass(class)
filter(expr|obj|ele|fn)
is(expr|obj|ele|fn)
1.6*
map(callback)
has(expr|ele)
not(expr|ele|fn)
slice(start,[end])
查找
children([expr])
closest(expr,[con]|obj|ele)
1.6*
find(expr|obj|ele)
next([expr])
nextall([expr])
nextUntil([exp|ele][,fil])
1.6*
offsetParent()
parent([expr])
parents([expr])
parentsUntil([exp|ele][,fil])
1.6*
prev([expr])
prevall([expr])
prevUntil([exp|ele][,fil])
1.6*
siblings([expr])
串联
add(expr|ele|html|obj[,con])
andSelf()
contents()
end()
事件
页面载入
ready(fn)
事件处理
on(eve,[sel],[data],fn)
1.7+
off(eve,[sel],[fn])
1.7+
bind(type,[data],fn)
one(type,[data],fn)
trigger(type,[data])
triggerHandler(type, [data])
unbind(type,[data|fn])
事件委派
live(type,[data],fn)
die(type,[fn])
delegate(sel,[type],[data],fn)
undelegate([sel,[type],fn])
1.6*
事件切换
hover([over,]out)
toggle(fn, fn2, [fn3, fn4, ...])
事件
blur([[data],fn])
change([[data],fn])
click([[data],fn])
dblclick([[data],fn])
error([[data],fn])
focus([[data],fn])
focusin([data],fn)
focusout([data],fn)
keydown([[data],fn])
keypress([[data],fn])
keyup([[data],fn])
mousedown([[data],fn])
mouseenter([[data],fn])
mouseleave([[data],fn])
mousemove([[data],fn])
mouseout([[data],fn])
mouseover([[data],fn])
mouseup([[data],fn])
resize([[data],fn])
scroll([[data],fn])
select([[data],fn])
submit([[data],fn])
unload([[data],fn])
效果
基本
show([speed,[easing],[fn]])
hide([speed,[easing],[fn]])
toggle([speed],[easing],[fn])
滑动
slideDown([spe],[eas],[fn])
slideUp([speed,[easing],[fn]])
slideToggle([speed],[easing],[fn])
淡入淡出
fadeIn([speed],[eas],[fn])
fadeOut([speed],[eas],[fn])
fadeTo([[spe],opa,[eas],[fn]])
fadeToggle([speed,[eas],[fn]])
自定义
animate(param,[spe],[e],[fn])
stop([cle],[jum])
1.7*
delay(duration,[queueName])
设置
jQuery.fx.off
jQuery.fx.interval
ajax
ajax 请求
$.ajax(url,[settings])
load(url,[data],[callback])
$.get(url,[data],[fn],[type])
$.getJSON(url,[data],[fn])
$.getScript(url,[callback])
$.post(url,[data],[fn],[type])
ajax 事件
ajaxComplete(callback)
ajaxError(callback)
ajaxSend(callback)
ajaxStart(callback)
ajaxStop(callback)
ajaxSuccess(callback)
其它
$.ajaxSetup([options])
serialize()
serializearray()
工具
浏览器及特性检测
$.support
$.browser
$.browser.version
$.boxModel
数组和对象操作
$.each(object,[callback])
$.extend([d],tgt,obj1,[objN])
$.grep(array,fn,[invert])
$.makearray(obj)
$.map(arr|obj,callback)
1.6*
$.inarray(val,arr,[from])
$.toarray()
$.merge(first,second)
$.unique(array)
$.parseJSON(json)
函数操作
$.noop
$.proxy(function,context)
测试操作
$.contains(container,contained)
$.type(obj)
$.isarray(obj)
$.isFunction(obj)
$.isEmptyObject(obj)
$.isPlainObject(obj)
$.isWindow(obj)
$.isNumeric(value)
1.7+
字符串操作
$.trim(str)
URL
$.param(obj,[traditional])
插件编写
$.error(message)
Deferred
def.done(donCal,[donCal])
def.fail(failCallbacks)
def.isRejected()
def.isResolved()
def.reject(args)
def.rejectWith(context,[args])
def.resolve(args)
def.resolveWith(context,[args])
def.then(doneCal,failCals)
def.promise([type],[target])
1.6+
def.pipe([donl],[fai],[pro])
1.7*
def.always(alwCal,[alwCal])
1.6+
def.notify(args)
1.7+
def.notifyWith(con,[args])
1.7+
def.progress(proCal)
1.7+
def.state()
1.7+
Callbacks
cal.add(callbacks)
1.7+
cal.disable()
1.7+
cal.empty()
1.7+
cal.fire(arguments)
1.7+
cal.fired()
1.7+
cal.fireWith([context] [, args])
1.7+
cal.has(callback)
1.7+
cal.lock()
1.7+
cal.locked()
1.7+
cal.remove(callbacks)
1.7+
$.callbacks(flags)
1.7+
其它
正则表达式
如果您觉得本文的内容对您的学习有所帮助:
关键字:
jquery api
jquery api 1.8
jquery教程
jquery手册
相关文章:
9个鲜为人知的HTML功能
小白怎么学习HTML5?新手入门必看
阿里巴巴常用的12个后端开发工具
sharepoint搭建文档服务器,SharePo...
语义化标签与HTML5新增的布局标签
vector教程:如何进行项目
JetBrains PhpStorm v2021....
HTML5教程之新元素
前端基础入门:HTML5基础语法与标签
HTML5——SVG基础入门
文章分类
/ Classification
jquery教程(3860)
插件详解(9)
常用功能(20)
div+css(145)
前端开发利器(20)
html5(322)
javascript(91)
网页设计(40)
越玩越聪明(17)
算法你更懂(52)
PHP知识(37)
css3(89)
DedeCMS(1)
ASP知识(1)
数据库(7)
.net(18)
java(380)
Aui-core(0)
Android开发(2)
jquery mobile(1)
精英招纳(22)
开心一刻(8)
ci框架(2)
迅雷会员账号分享(2)
前端框架(17)
金钱谷(14)
P2P网贷系统(18)
小额贷款(5)
众筹系统(63)
催收系统(1)
瀑布流(1)
股权众筹系统(8)
回报众筹系统(0)
html5游戏(10)
网络流行语(11)
UED(8)
棒棒糖游戏中心(6)
励志名言(5)
typescript(1)
占便宜(1)
zepto(1)
好听的英文歌曲(9)
html5视频直播(3)