$("div[id]") 选择所有含有id属性的div元素
$("input[name='einsdan']") 选择所有的name属性等于'einsdan'的input元素
$("input[name!='einsdan']") 选择所有的name属性不等于'einsdan'的input元素
$("input[name^='einsdan']") 选择所有的name属性以'einsdan'开头的input元素
$("input[name$='einsdan']") 选择所有的name属性以'einsdan'结尾的input元素
$("input[name*='einsdan']") 选择所有的name属性包含'einsdan'的input元素
$("input[id][name$='einsdan']") 可以使用多个属性进行联合选择,该选择器是得到所有的含有id属性并且name属性以einsdan结尾的元素
相关文章
- jQuery中的表单对象属性过滤选择器(四、八)::enabled、:disabled、:checked、:selected
- jQuery中的属性过滤选择器(四、五):[attribute] 、[attribute=value]、[attribute!=value] 、[attribute^=value] 等
- 带有过滤器值的jQuery目标选择器属性并添加新类
- [ jquery 选择器 :first :first-child :first-of-type :nth-child() :nth-of-type() 综述 ] 关于jquery选择器中:first和:first-child和:first-of-type的区别及:nth-child()和:nth-of-type()的区别
- jQuery 选择器 first-child和first-of-type、 last-child和last-of-type的区别
- HTML5中类jQuery选择器querySelector的高级使用 document.querySelectorAll.bind(document);
- jquery类选择器仅捕获类中单击的元素
- matchesSelector 匹配选择器表达式sizzle的实现
- jQuery选择器对应的DOM API ——选择元素
- [ jquery 选择器 :nth-of-type() ] 选取指定类型(p)父元素下的第几个子元素