jQuery Selectors(选择器)的使用(六、属性篇)_jquery

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://www.cnblogs.com/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"

时间: 2024-12-29 18:29:50

jQuery Selectors(选择器)的使用(六、属性篇)_jquery的相关文章

jQuery Selectors(选择器)的使用(九、表单对象属性篇)_jquery

jQuery-Selectors(选择器)的使用(九.表单对象属性篇) 本系列文章主要讲述jQuery框架的选择器(Selectors)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉及很深,我的学习方法:先入门,后进阶! 本系列文章分为:基本篇.层次篇.简单篇.内容篇.可见性篇.属性篇.子元素篇.表单篇.表单对象属性篇共9篇文章. 本篇讲解::enabled,:disabled,:checked,:selected的用法. 您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@

jQuery Selectors(选择器)的使用(四-五、内容篇&amp;amp;可见性篇)_jquery

jQuery-Selectors(选择器)的使用(四--五.内容篇&可见性篇) 本系列文章主要讲述jQuery框架的选择器(Selectors)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉及很深,我的学习方法:先入门,后进阶! 本系列文章分为:基本篇.层次篇.简单篇.内容篇.可见性篇.属性篇.子元素篇.表单篇.表单对象属性篇共9篇文章. 本篇讲解::contains(text),:empty,:has(selector),:parent,:hidden,:visible的用法.

jQuery Selectors(选择器)的使用(一、基本篇)_jquery

jQuery-Selectors(选择器)的使用(一.基本篇) 本系列文章主要讲述jQuery框架的选择器(Selectors)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉及很深,我的学习方法:先入门,后进阶! 本系列文章分为:基本篇.层次篇.简单篇.内容篇.可见性篇.属性篇.子元素篇.表单篇.表单对象属性篇共9篇文章. 您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@qq.com 由于是第一次写技术性系列文章,难免会出错或代码BUG,欢迎指出,在此谢过! 您可以到jQ

jQuery Selectors(选择器)的使用(二、层次篇)_jquery

jQuery-Selectors(选择器)的使 用(二.层次篇) 本系列文章主要讲述jQuery框架的选择器(Selectors)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉 及很深,我的学习方法:先入门,后进阶! 本系列文章分为:基本篇.层次篇.简单篇.内容篇.可见性篇.属性篇.子元素篇.表单篇.表单对象属性篇共9篇文章 . 您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@qq.com 由于是第一次写技术性系列文章,难免会出错或代码BUG,欢迎指出,在此谢过! 您可以

jQuery Attributes(属性)的使用(一、属性篇)_jquery

jQuery-Attributes(属性)的使用(一.属性篇) 本系列文章主要讲述jQuery框架的属性(Attributes)使用方法,我将以实例方式进行讲述,以简单,全面为基础,不会涉及很深,文章分为:属性篇.类篇.Html代码篇&文本篇.值篇共4篇文章. 本篇讲解:attr(name),attr(properties),attr(key,value),attr(key,fn),removeAttr(name)的用法. 您对本系列文章有任何建议或意见请发送到邮箱:sjzlgt@qq.com

jQuery 复合选择器应用的几个例子_jquery

<!-- 本文例子所引用的jQuery版本为 jQuery-1.8.3.min.js --> 一. 复合选择器对checkbox的相关操作 <input type="checkbox" id="ckb_1" /> <input type="checkbox" id="ckb_2" disabled="true" /> <input type="checkb

jquery遍历标签中自定义的属性方法_jquery

在开发中我们有时会对html标签添加属性,如何遍历处理? <ul> <li name="li1" sortid="nav_1">aaaaaaa</li> <li name="li1" sortid="nav_2">bbbbbbb</li> <li name="li1" sortid="nav_3">cccccccc&

jQuery使用总结 - Core jQuery Selectors 选择器一2/4

CSS基础 需要对CSS有初步的了解,如下是一些常见的举例,更深入的可以参考相关的资料 body,th,td body.fancy body.fancy h1 设置多个元素的风格 #pageContent 元素名pageContent的风格 <div id=" pageContent" - img[src="example.jpg"] 使用css选择器设置特定的img元素风格 .rightCap 定义一个类别的风格 <div class=" r

jQuery使用总结 - Core jQuery Selectors选择器二3/4

生成元素 $('<img>', { src: 'images/little.bear.png', alt: 'Little Bear', title:'I woof in your general direction', click: function(){ alert($(this).attr('title')); } }) .css({ cursor: 'pointer', border: '1px solid black', padding: '12px 12px 20px 12px',