(编辑:jimmy 日期: 2024/11/18 浏览:2)
本文实例讲述了jQuery属性选择器用法。分享给大家供大家参考,具体如下:
属性选择器
在HTML文档中,元素的开始标记中通常包含有多个属性(attribute)
<input id="txtUsername" type="text" value="qiyisoft" name="email" style="display:block" />
在jQuery中,除了直接使用id和class属性作为选择器之外,还可以根据各种属性(如title等)对由选择器查询到的元素进行过滤。
属性选择器包含在中括号"[]"中
语法如下:
属性选择器种类
$("selector[attribute=value]");
$("selector[attribute^=value]")
$("selector[attribute$=value]")
$("selector[attribute*=value]")
$("selector[attribute]")
$("selector[selector1][selector2]…[selector[N]")
如操作:
<script> $(function(){ //利用属性选择器获取当前页面所有的文本框 //$("input[type='text']").css("border" , "1px solid red"); //利用尾匹配完成对于.com结尾的超链接筛选 //$=代表以XXX结尾的情况 //$("a[href$='.com']").css("border" , "1px solid red"); //^= 代表头 匹配,筛选http://开头的超链接 //$("a[href^='http://']").css("border" , "1px solid red"); //*= 代表任意匹配,获取所有value属性中包含input字符串的对象 //$("*[value*='input']").css("border" , "1px solid red"); //在不考虑属性值的情况下,可以直接在中括号内写属性名即可 //$("*[rows]").css("border" , "1px solid red"); //对于多个属性条件同时生效的情况下,我们可以使用多条件筛选,多条件筛选通过增加多个[]来实现的 $("input[type='radio'][checked='checked'],input[type='checkbox'][checked='checked']").css("width" , "100px"); //多条件筛选 $("input[type='text'][disabled='disabled']").css("border" , "1px solid red"); }); </script>
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery页面元素操作技巧汇总》、《jQuery常见事件用法与技巧总结》、《jQuery常用插件及用法总结》、《jQuery扩展技巧总结》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。