jquery命令汇总,方便使用jquery的朋友(2)

:not(selector)         $("input:not(:empty)")          所有不为空的 input 元素

:header                  $(":header")                         所有标题元素 <h1> - <h6>

:animated                                                             所有动画元素

:contains(text)        $(":contains('W3School')")    包含指定字符串的所有元素

:empty                  $(":empty")                         无子(元素)节点的所有元素

:hidden                  $("p:hidden")                       所有隐藏的 <p> 元素

:visible                  $("table:visible")                  所有可见的表格

s1,s2,s3                 $("th,td,.intro")                    所有带有匹配选择的元素

[attribute]                     $("[href]")                           所有带有 href 属性的元素

[attribute=value]    $("[href='#']")                      所有 href 属性的值等于 "#" 的元素

[attribute!=value]   $("[href!='#']")                     所有 href 属性的值不等于 "#" 的元素

[attribute$=value]   $("[href$='.jpg']")                所有 href 属性的值包含以 ".jpg" 结尾的元素

:input                    $(":input")                           所有 <input> 元素

:text                      $(":text")                             所有 type="text"  <input> 元素

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdjygj.html