标签:input fir 筛选 one spl button word splay 元素
jquery选择器包括了css选择器和自己新增的一些选择器:
基本筛选器:
:first
:last
:gt()
:lt()
:eq()
:even
:odd
可见性选择器:
:hidden(匹配所有不可见(包括display:none,不包括visibility:hidden)或type=‘hidden‘的元素)
:visible
内容选择器:
:empty $(‘td:empty‘) 匹配所有不包含子元素或文本的空元素
:parent $(‘td:parent‘)匹配含有子元素或者文本的元素
:contains $(‘div:contains("szz")‘) 匹配包含给定文本的元素
:has(selector) $(‘div:has(p)‘) 匹配所有包含p元素的div
表单选择器:
:input 匹配所有input元素
//以下均为type值
:text
:password
:radio
:checkbox
:submit
:image
:reset
:button
:file
标签:input fir 筛选 one spl button word splay 元素
原文地址:https://www.cnblogs.com/szzlily/p/9860663.html