### 核心
-
### 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)](#)
### 關于
- [關于此jQuery中文文檔](#)
- [提交bug及獲取更新](#)
### 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+
### 其它
- [正則表達式](#)