jQuery1.8.3手册完整中文版 核心 jQuery 核心函数 jQuery([sel,[context]]) jQuery(html,[ownerDoc])1.8* jQuery(callback) jQuery.holdReady(hold)1.6+ jQuery 对象访问 each(callback) size() length selector context get([index]) index([selector|element]) 数据缓存 data([key],[value]) removeData([name|list])1.7* $.data(ele,[key],[val])1.8- 队列控制 queue(e,[q]) dequeue([queueName]) clearQueue([queueName]) 插件机制 jQuery.fn.extend(object) jQuery.extend(object) 多库共存 jQuery.noConflict([ex]) 属性 属性 attr(name|pro|key,val|fn) removeAttr(name) prop(n|p|k,v|f)1.6+ removeProp(name)1.6+ CSS 类 addClass(class|fn) removeClass([class|fn]) toggleClass(class|fn[,sw]) HTML代码/文本/值 html([val|fn]) text([val|fn]) val([val|fn|arr]) CSS CSS css(name|pro|[,val|fn])1.8* jQuery.cssHooks 位置 offset([coordinates]) position() scrollTop([val]) scrollLeft([val]) 尺寸 height([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 :focus1.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(e,[c|o|e)1.7- find(e|o|e)1.6* next([expr]) nextall([expr]) nextUntil([e|e][,f])1.6* offsetParent() parent([expr]) parents([expr]) parentsUntil([e|e][,f])1.6* prev([expr]) prevall([expr]) prevUntil([e|e][,f])1.6* siblings([expr]) 串联 add(e|e|h|o[,c]) 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(t,[d|f]) 事件委派 live(type,[data],fn)1.7- die(type,[fn])1.7- delegate(s,[t],[d],fn) undelegate([s,[t],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([s,[e],[fn]]) hide([s,[e],[fn]]) toggle([s],[e],[fn]) 滑动 slideDown([s],[e],[fn]) slideUp([s,[e],[fn]]) slideToggle([s],[e],[fn]) 淡入淡出 fadeIn([s],[e],[fn]) fadeOut([s],[e],[fn]) fadeTo([[s],o,[e],[fn]]) fadeToggle([s,[e],[fn]]) 自定义 animate(p,[s],[e],[fn])1.8* stop([c],[j])1.7* delay(d,[q]) 设置 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) 其它 $.ajaxPrefilter([type],fn) $.ajaxSetup([options]) serialize() serializearray() 工具 浏览器及特性检测 $.support $.browser1.9- $.browser.version $.boxModel 数组和对象操作 $.each(object,[callback]) $.extend([d],tgt,obj1,[objN]) $.grep(array,fn,[invert]) $.sub()1.9- $.when(deferreds) $.makeArray(obj) $.map(arr|obj,callback)1.6* $.inArray(val,arr,[from]) $.toArray() $.merge(first,second) $.unique(array) $.parseJSON(json) $.parseXML(data) 函数操作 $.noop $.proxy(function,context) 测试操作 $.contains(c,c) $.type(obj) $.isarray(obj) $.isFunction(obj) $.isEmptyObject(obj) $.isPlainObject(obj) $.isWindow(obj) $.isNumeric(value)1.7+ 字符串操作 $.trim(str) URL $.param(obj,[traditional]) 插件编写 $.error(message) $.fn.jquery 事件对象 eve.currentTarget eve.data eve.delegateTarget1.7+ eve.isDefaultPrevented() eve.isImmediatePropag...() eve.isPropagationStopped() eve.namespace eve.pageX eve.pageY eve.preventDefault() eve.relatedTarget eve.result eve.stopImmediatePro...() eve.stopPropagation() eve.target eve.timeStamp eve.type eve.which 延迟对象 def.done(d,[d]) def.fail(failCallbacks) def.isRejected()1.8- def.isResolved()1.8- def.reject(args) def.rejectWith(c,[a]) def.resolve(args) def.resolveWith(c,[a]) def.then(d,f,[,p])1.7* def.promise([ty],[ta])1.6+ def.pipe([d],[f],[p])1.7* def.always(al,[al])1.6+ def.notify(args)1.7+ def.notifyWith(c,[a])1.7+ def.progress(proCal)1.7+ def.state()1.7+ 回调函数 cal.add(callbacks)1.7+ cal.disable()1.7+ cal.empty()1.7+ cal.fire(arguments)1.7+ cal.fired()1.7+ cal.fireWith([c] [,a])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中文文档 提交bug及获取更新 其它 CSS压缩/格式化 JS压缩/格式化 正则表达式在线测试 正则表达式速查表 HTML5速查表 Copyright © hemin 2012. All right reserved.
- linsoven2014-09-02为什么用不了,里面是空的?
- gc1020302014-06-16还可以正在用
- @心随梦飞2014-05-25文档蛮全的!
- 粉丝: 1
- 资源: 4
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 计组IEEE754浮点数舍入的4种方法
- C#ASP.NET可视化流程设计器源码数据库 SQL2012源码类型 WebForm
- 朴素贝叶斯分类器.ipynb
- 震撼!通过双重异步,Excel 10万行数据导入从191秒优化到2秒!_QQ浏览器网页保存.pdf
- 笔记自动驾驶预测与决策规划-Part7-数据驱动的预测方法
- C#ASP.NET党员党建信息管理系统源码数据库 SQL2008源码类型 WebForm
- 基于python实现的电影信息智能问答系统源码+数据库(Python毕业设计)
- 各种三维模型(gltf,glb格式)
- C#教育机构官网+教务管理系统源码+微信公众号源码数据库 SQL2005源码类型 WebForm
- UbuntuMono.ttf