jQuery选择器[attribute^=value]的具体使用详解
程序员文章站
2022-05-15 08:01:54
...
返回值:Array<Element(s)>[attribute^=value]
概述
匹配给定的属性是以某些值开始的元素
参数
attributeStringV1.0
属性名
value StringV1.0
属性值。引号在大多数情况下是可选的。但在遇到诸如属性值包含"]"时,用以避免冲突。
示例
描述:
查找所有 name 以 'news' 开始的 input 元素
HTML 代码:
<input name="newsletter" /> <input name="milkman" /> <input name="newsboy" />
jQuery 代码:
$("input[name^='news']")
结果:
[ <input name="newsletter" />, <input name="newsboy" /> ]
选择器能够选取属性值是以某些值开始的元素。
语法结构:
$("[attribute^=value]")
参数列表:
实例代码:
实例一:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title></title> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("li[id^=s]").css("color","blue"); }) }) </script> </head> <body> <ul> <li id="first">html专区</li> <li id="second" title="jquery">Jquery专区</li> </ul> <button>点击查看效果</button> </body> </html>
以上代码可以将li元素中id属性值以s开头的li元素的文本颜色设置为蓝色。
实例二:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title></title> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("li[id^=[s]").css("color","blue"); }); }); </script> </head> <body> <ul> <li id="first">html专区</li> <li id="[second" title="jquery">Jquery专区</li> </ul> <button>点击查看效果</button> </body> </html>
从以上代码可以看出如何代码中含有"["或者"]"的时候,必须要带有引号,否则会造成匹配错误。
以上就是jQuery选择器[attribute^=value]的具体使用详解的详细内容,更多请关注其它相关文章!
上一篇: yii2.0的curd
推荐阅读
-
jQuery选择器[attribute*=value]的使用详解
-
jQuery选择器:header的使用详解
-
jQuery选择器:only-child的使用案例详解
-
jQuery选择器:only-child的使用案例详解
-
jquery选择器[attribute=value]出现的问题解决办法
-
jQuery选择器[attribute^=value]的具体使用详解
-
jQuery选择器:last-child的使用详解
-
JQuery中使用[attribute^=value]选择器有哪些需要注意的
-
JQuery中使用[attribute^=value]选择器有哪些需要注意的
-
jQuery选择器:header的使用详解