jquery 選擇器
基本選擇器(#id/element/.class/*/selector1,selectorn)
層次選擇器(ancestor descendant/parent>child/prev+next/prev~siblings)
過濾選擇器
簡單過濾選擇器(first()或:first/last()或:last/:not(selector/
:even/:odd/:eq(index)/:gt()/lt(index)/:header/:animated))
內容過濾選擇器(:contains(text)/:empty()/:has(selector)/:parent)
可見性過濾選擇器(:hidden/:visible)
屬性過濾選擇器([attribute]/[attribute=value]/[attribute!=value]/[attribute^=value]/ [attribute$=value]/ [attribute*=value] /[selector1] [selector2] [selectorn])
子元素過濾選擇器(:nth-child(eq|even|odd|index)/:first-child/:last-child/:only-child)
表單物件屬性過濾選擇器(:enabled/:disabled/:checked/:selected)
表單選擇器(:input/:text/:password/:radio/:checkbox/:submit/:image/:reset/:button/:file)
訪問元素
元素屬性操作(attr(name)/attr(key,value)/attr()
/attr(key,function(index))/removeattr(name)/)
元素內容操作(html()/tnl(val)/text()/text(val))
獲取或設定元素值(val(val)/val().join(「,」)/)
元素樣式操作(css(name,value)/addclass(class)/addclass(class0 class1 …)
/toggleclass(class)/removeclass([class])/)
建立節點元素($(html))
插入節點
外插(after(content)/ after (function)/before(content)/
before (function)/insertafter(content)/insertbefore(content))
複製節點(clone()/clone(true))
替換節點(replasewith(content)/replaceall(selector))
包裹節點(wrap(html)/ wrap(elem)/ wrap(fn)/ unwrap()/wrapall(html)/ wrapall(elem)/
wrapinner(html)/ wrapinner(elem)/ wrapinner(fn)/)
遍歷元素each(callback)
刪除元素(remove([expr])/empty())
頁面載入事件(ready()/)
繫結事件(bind(type,[data],fn))
切換事件(hover(over,out)/)
toggle()方法(toggle(fn,fn2,fn3,fn4, …))
移除事件(unbind([type],[fn]))
方法one()(one(type,[data],fn))
方法trigger()(trigger(type,[data]))
jquery常用方法總結
以下是jquery中比較常用的一些操作實現方式 標籤名 取html元素 document.getelementsbytagname id 取單個控制項document.getelementbyid div id 取某個控制項中 控制項 id id 通過控制項id取其中的控制項 標籤.class樣式名...
jQuery之常用方法總結
1.獲取dom元素 操作方法 jq選擇器 根據選擇器型別快速獲取需要的元素 selector content box imgbox box a a box eq n 獲取集合中索引為n的 gt n 大於這個索引的 lt n 小於這個索引的 節點之間關係的屬性 用jq選擇器獲取的元素,我們設定變數名的...
js學習總結 jquery常用方法
可以看一下他的手冊 1 jquery的 函式 function fn1 value function fn2 value var call callbacks 建立乙個 函式的列表集合 call.add fn1 向集合中增加乙個叫做fn1的函式 call.fire 100 觸發fire方法的時候,把...