时间:2021-05-26
本系列文章分为:基本篇、层次篇、简单篇、内容篇、可见性篇、属性篇、子元素篇、表单篇、表单对象属性篇共9篇文章。
本篇讲解:[attribute],[attribute=value],[attribute!=value],[attribute^=value],[attribute$=value],[attribute*=value],[selector1][selector2][selectorN]的用法。
您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@qq.com
由于是第一次写技术性系列文章,难免会出错或代码BUG,欢迎指出,在此谢过!
运行后,请刷新下代码,以便加载jquery
jQuery-Selectors-5 .div { width:95%; margin-left:15px; margin-top:15px; margin-right:15px; padding-left:5px; padding-top:5px; padding-bottom:5px; background-color:#ccc; border:#999 1px solid; line-height:30px; font-size:13px; font-family:微软雅黑; } .blue{color:Blue;} .green{color:Green;} .button{border:green 1px solid;width:100px;} .xiaobiao{ font-weight:bold;} .red_test{background-color:red; color:White; width:300px; height:30px;} .li_test{border:#000 1px solid;} jQuery-Selectors(选择器)的使用(六、属性篇) 本系列文章主要讲述jQuery框架的选择器(Selectors)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉及很深,我的学习方法:先入门,后进阶! 本系列文章分为:基本篇、层次篇、简单篇、内容篇、可见性篇、属性篇、子元素篇、表单篇、表单对象属性篇共9篇文章。 本篇讲解:[attribute],[attribute=value],[attribute!=value],[attribute^=value],[attribute$=value],[attribute*=value],[selector1][selector2][selectorN]的用法。 您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@qq.com 由于是第一次写技术性系列文章,难免会出错或代码BUG,欢迎指出,在此谢过! 您可以到jQuery官网来学习更多的有关jQuery知识。 版权所有:code-cat 博客:http:///bynet 转载请保留出处和版权信息! 1. [attribute]用法 定义:匹配包含给定属性的元素 返回值:Array<Element> 参数:attribute (String) : 属性名 实例:将ID为"div_a1"的DIV中有ID属性的span元素的背景色改为红色 代码: $("#div_a1 span[id]").css("background-color","red"); //点击按钮一将执行这句代码 DIV ID="div_a1" span ID="span_1" span 无ID属性 span ID="span_2" DIV ID="div_a5" 2. [attribute=value]用法 定义:匹配给定的属性是某个特定值的元素 返回值:Array<Element> 参数:attribute (String):属性名 value (String):属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。 实例:将ID为"div_b1"的DIV中name属性值为chk_attribute_test的input元素的背景色改为红色 代码:$("#div_b1 input[name=chk_attribute_test]").css("background-color","red"); //点击按钮二将执行这句代码 DIV ID="div_b1" radio name='rd' radio name='rd' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' DIV ID="div_b5" 3. [attribute!=value]用法 定义:匹配给定的属性是不包含某个特定值的元素 返回值:Array<Element> 参数:attribute (String):属性名 value (String):属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。 实例:将ID为"div_c1"的DIV中name属性值不是chk_attribute_test的input元素的背景色改为红色 代码:$("#div_c1 > input[name!=chk_attribute_test]").css("background-color","red"); //点击按钮三将执行这句代码 DIV ID="div_c1" radio name='rd' radio name='rd' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' DIV ID="div_c5" 注意:这里我用了'>',如果将'>'换成' ',则按钮三的背景颜色也会变成红色 4. [attribute^=value]用法 定义:匹配给定的属性是以某些值开始的元素 返回值:Array<Element> 参数:attribute (String):属性名 value (String):属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。 实例:将ID为"div_d1"的DIV中name属性值以'txt'开头的input元素的背景色改为红色 代码:$("#div_d1 > input[name^=txt]").css("background-color","red"); //点击按钮四将执行这句代码 DIV ID="div_d1" radio name='rd' radio name='rd' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' DIV ID="div_d5" 5. [attribute$=value]用法 定义:匹配给定的属性是以某些值结尾的元素 返回值:Array<Element> 参数:attribute (String):属性名 value (String):属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。 实例:将ID为"div_e1"的DIV中name属性值以'list'结尾的input元素的背景色改为红色 代码:$("#div_e1 > input[name$=list]").css("background-color","red"); //点击按钮五将执行这句代码 DIV ID="div_e1" checkbox name='chk_attribute_list' radio name='rd' radio name='rd' checkbox name='chk_attribute_list' checkbox name='chk_attribute_list' checkbox name='chk_attribute_list' checkbox name='chk_attribute_list' DIV ID="div_e5" 6. [attribute*=value]用法 定义:匹配给定的属性是以包含某些值的元素 返回值:Array<Element> 参数:attribute (String):属性名 value (String):属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。 实例:将ID为"div_f1"的DIV中name属性值包含'_'的input元素的背景色改为红色 代码:$("#div_f1 > input[name*=_]").css("background-color","red"); //点击按钮六将执行这句代码 DIV ID="div_f1" radio name='rd' radio name='rd' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' checkbox name='chk_attribute_test' DIV ID="div_f5" 7. [selector1][selector2][selectorN]用法 定义:复合属性选择器,需要同时满足多个条件时使用。 返回值:Array<Element> 参数:selector1 (Selector):属性选择器 selector2 (Selector):另一个属性选择器,用以进一步缩小范围 selectorN (Selector):任意多个属性选择器 实例:将ID为"div_g1"的DIV中有id属性且name属性值以'rd'开头和以'test'结尾的input元素的背景色改为红色 代码:$("#div_g1 > input[id][name$=test][name^=rd]").css("background-color","red"); //点击按钮七将执行这句代码 DIV ID="div_g1" radio id='rd_0' name='rd_test' radio id='rd_1' name='rd_test' checkbox id='chk_0' name='chk_attribute_test' checkbox id='chk_1' name='chk_attribute_test' checkbox id='chk_2' name='chk_attribute_test' checkbox id='chk_3' name='chk_attribute_test' checkbox id='chk_4' name='chk_attribute_test' DIV ID="div_g5" [Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jQuery元素选择器和属性选择器允许您通过标签名、属性名或内容对HTML元素进行选择。jQuery元素选择器:jQuery使用CSS选择器来选取HTML元素。
本文实例讲述了jQuery选择器之层次选择器用法。分享给大家供大家参考,具体如下:前面一篇介绍了几种基本的jQuery选择器,今天归纳一下jQuery的层次选择
本文实例讲述了jQuery选择器之基本过滤选择器用法。分享给大家供大家参考,具体如下:前面一篇介绍了层次选择器,今天我们学习一下jQuery的另一种选择器:基本
本文实例讲述了Jquery中CSS选择器用法。分享给大家供大家参考。具体如下:jQuery使用了一套css选择器,共有5种,即标签选择器,ID选择器,类选择器,
本文实例讲述了jquery选择器和属性对象的操作。分享给大家供大家参考,具体如下:jQuery-选择器functiontestId(){//利用id获取对象,注