jQuery的强大选择器小结(2)

匹配所有可用元素

  查找所有可用的input元素: 
$("input:enabled")
 
:disabled   匹配所有不可用元素   查找所有不可用的input元素: 
$("input:disabled")
 
:checked   匹配所有选中的被选中元素(复选框、单选框等,不包括select中的option)   查找所有选中的复选框元素: 
$("input:checked")
 
:selected   匹配所有选中的option元素   查找所有选中的选项元素: 
$("select option:selected")
 

您可能感兴趣的文章:

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

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