jQuery  API 1.4.4 参考文档中文版/离线手册/CHM下载|在线浏览

 

 

jQuery1.4.4 最新中文参考手册在线浏览

http://docs.jayzou.com/docs/jquery/144/cheatsheet.html

 

jQuery1.4.4 最新中文参考手册电子书/CHM/离线版电子书/下载

下载地址:http://docs.jayzou.com/docs/jquery/144/aboutXMLDoc.html

 

The Write Less, Do More ; 很好JS框架~

 

前端开发之兼容问题解决必备良药~

 

jquery api 下载/jquery chm 中文API参考文档CHM下载/在线浏览

 

jQuery api 1.4.4 中文速查手册!

核心

jQuery 核心函数/jQuery 函数使用

  • jQuery(expr, [context])
  • jQuery(html, [ownerDoc])
  • jQuery(html, props)
  • jQuery(elements)
  • jQuery()
  • jQuery(callback)

jQuery 对象访问/jQuery 函数使用

  • each(callback)
  • size()
  • length
  • selector
  • context
  • get()
  • get(index)
  • index(subject)

数据缓存/jQuery 函数使用

  • data([name] , [value])
  • data(obj)
  • removeData(name)
  • $.data([el], [key], [val])

队列控制/jQuery 函数使用

  • queue(name ,[cb|queue])
  • dequeue(name)
  • clearQueue([queueName])

插件机制/jQuery 函数使用

  • jQuery.fn.extend(object)
  • jQuery.extend(object)

多库共存/jQuery 函数使用

  • jQuery.noConflict([ex])

属性

属性/jQuery 函数使用

  • attr(name)
  • attr(properties)
  • attr(key, value)
  • attr(key, fn)
  • removeAttr(name)

CSS 类/jQuery 函数使用

  • addClass(class | fn)
  • removeClass([class | fn])
  • toggleClass(class|fn [, sw])

HTML代码/文本/值/jQuery 函数使用

  • html( [val | fn] )
  • text( [val | fn] )
  • val( [val | fn | arr] )

CSS

CSS/jQuery 函数使用

  • css(name)
  • css(properties)
  • css(name, value | fn)

位置/jQuery 函数使用

  • offset([coordinates])
  • position()
  • scrollTop( [val] )
  • scrollLeft( [val] )

尺寸/jQuery 函数使用

  • height( [val] )
  • width( [val] )
  • innerHeight()
  • innerWidth()
  • outerHeight(options)
  • outerWidth(options)

选择器

基本/jQuery 函数使用

  • #id
  • element
  • .class
  • *
  • selector1,selector2,selectorN

层级/jQuery 函数使用

  • ancestor descendant
  • parent > child
  • prev + next
  • prev ~ siblings

基本/jQuery 函数使用

  • :first
  • :last
  • :not
  • :even
  • :odd
  • :eq
  • :gt
  • :lt
  • :header
  • :animated

内容/jQuery 函数使用

  • :contains
  • :empty
  • :has
  • :parent

可见性/jQuery 函数使用

  • :hidden
  • :visible

属性/jQuery 函数使用

  • [attribute]
  • [attribute=value]
  • [attribute!=value]
  • [attribute^=value]
  • [attribute$=value]
  • [attribute*=value]
  • [attrSel1][attrSel2][attrSelN]

子元素/jQuery 函数使用

  • :nth-child
  • :first-child
  • :last-child
  • :only-child

表单/jQuery 函数使用

  • :input
  • :text
  • :password
  • :radio
  • :checkbox
  • :submit
  • :image
  • :reset
  • :button
  • :file
  • :hidden

表单对象属性/jQuery 函数使用

  • :enabled
  • :disabled
  • :checked
  • :selected

文档处理

内部插入/jQuery 函数使用

  • append(content | fn)
  • appendTo(content)
  • prepend(content | fn)
  • prependTo(content)

外部插入/jQuery 函数使用

  • after(content | fn)
  • before(content | fn)
  • insertAfter(content)
  • insertBefore(content)

包裹/jQuery 函数使用

  • wrap(html)
  • wrap(elem)
  • wrap(fn)
  • unwrap()
  • wrapAll(html)
  • wrapAll(elem)
  • wrapInner(html)
  • wrapInner(elem)
  • wrapInner(fn)

替换/jQuery 函数使用

  • replaceWith(content)
  • replaceAll(selector)

删除/jQuery 函数使用

  • empty()
  • remove([expr])
  • detach([expr])

复制/jQuery 函数使用

  • clone()
  • clone(true)

筛选

过滤/jQuery 函数使用

  • eq(index)
  • first()
  • last()
  • hasClass(class)
  • filter(expr | fn) is(expr)
  • map(callback)
  • has(expr)
  • not(expr)
  • slice(start, [end])

查找/jQuery 函数使用

  • children([expr])
  • closest([expr])
  • find(expr)
  • next([expr])
  • nextAll([expr])
  • nextUntil([expr])
  • offsetParent()
  • parent([expr])
  • parents([expr])
  • parentsUntil([expr])
  • prev([expr])
  • prevAll([expr])
  • prevUntil([expr])
  • siblings([expr])

串联/jQuery 函数使用

  • add(expr, [context])
  • andSelf()
  • contents()
  • end()

事件

页面载入/jQuery 函数使用

  • ready(fn)

事件处理/jQuery 函数使用

  • bind(type, [data], fn)
  • one(type, [data], fn)
  • trigger(type, [data])
  • triggerHandler(type, [data])
  • unbind([type], [data])

事件委派/jQuery 函数使用

  • live(type, [data], fn)
  • die([type], [fn])
  • delegate(selector, [type], [fn])
  • undelegate()

事件切换/jQuery 函数使用

  • hover(over, out)
  • toggle(fn, fn2, [fn3, fn4, ...])

事件/jQuery 函数使用

  • blur( [fn] )
  • change( [fn] )
  • click( [fn] )
  • dblclick( [fn] )
  • error( [fn] )
  • focus( [fn] )
  • focusin( [fn] )
  • focusout( [fn] )
  • keydown( [fn] )
  • keypress( [fn] )
  • keyup( [fn] )
  • mousedown(fn)
  • mousemove(fn)
  • mouseout(fn)
  • mouseover(fn)
  • mouseup(fn)
  • resize(fn)
  • scroll(fn)
  • select( [fn] )
  • submit( [fn] )
  • unload(fn)

效果

基本/jQuery 函数使用

  • show()
  • show(speed, [callback])
  • hide()
  • hide(speed, [callback])
  • toggle()
  • toggle(switch)
  • toggle(speed, [callback])

滑动/jQuery 函数使用

  • slideDown(speed, [callback])
  • slideUp(speed, [callback])
  • slideToggle(speed, [callback])

淡入淡出/jQuery 函数使用

  • fadeIn(speed, [callback])
  • fadeOut(speed, [callback])
  • fadeTo(speed, opacity, [fn]) fadeToggle(speed, [easing), [callback]

自定义/jQuery 函数使用

  • animate(param,[dur],[e],[fn])
  • animate(params, options)
  • stop([clearQueue], [gotoEnd])
  • delay(duration, [queueName])

设置/jQuery 函数使用

  • jQuery.fx.off
  • jQuery.fx.interval

Ajax

Ajax 请求/jQuery 函数使用

  • $.ajax([options])
  • load(url, [data], [callback])
  • $.get(url, [data], [fn], [type])
  • $.getJSON(url, [data], [fn])
  • $.getScript(url, [callback])
  • $.post(url, [data], [fn], [type])

Ajax 事件/jQuery 函数使用

  • ajaxComplete(callback)
  • ajaxError(callback)
  • ajaxSend(callback)
  • ajaxStart(callback)
  • ajaxStop(callback)
  • ajaxSuccess(callback)

其它/jQuery 函数使用

  • $.ajaxSetup([options])
  • serialize()
  • serializeArray()

工具

浏览器及特性检测/jQuery 函数使用

  • $.support
  • $.browser
  • $.browser.version
  • $.boxModel

数组和对象操作/jQuery 函数使用

  • $.each(object, [callback])
  • $.extend([d],tgt,obj1,[objN])
  • $.grep(array, fn, [invert])
  • $.makeArray(obj)
  • $.map(array, callback)
  • $.inArray(value, array)
  • $.toArray()
  • $.merge(first, second)
  • $.unique(array)
  • $.parseJSON(json)

函数操作/jQuery 函数使用

  • $.noop
  • $.proxy(function, scope)

测试操作/jQuery 函数使用

  • $.contains(container, contained)
  • $.isArray(obj)
  • $.isFunction(obj)
  • $.isEmptyObject(obj)
  • $.isPlainObject(obj)
  • $.isWindow(obj)
  • $.type(obj)

字符串操作/jQuery 函数使用

  • $.trim(str)

URL/jQuery 函数使用

  • $.param(obj, [traditional])

插件编写/jQuery 函数使用

  • $.error(message)

关于

  • 关于此jQuery中文文档
  • 关于jQuery 1.4.4中文版
  • 关于jQuery 1.4.1中文版
  • 关于jQuery 1.3 版翻译
  • 关于jQuery 1.2 版翻译
  • 提交bug及获取更新

拓展

  • ASP 参考手册
  • PHP 参考手册
  • SQL 参考手册
  • HTML 5 参考手册
  • CSS 参考手册
  • 更多手册 >>