jQuery [attribute$=value] 选择器
实例
选择 href
属性以 ".org" 结尾的所有 <a> 元素:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a[href$='.org']").css("background-color", "yellow");});
</script>
</head>
<body>
<a href="https://cankaoshouce.com">cankaoshouce.com</a><br>
<a href="https://baidu.com">baidu.com</a><br>
<a href="https://www.wikipedia.org">wikipedia.org</a>
</body>
</html>
定义与用法
[attribute$=value]
选择器选择具有特定属性的每个元素,其值以特定字符串结尾。
语法
$("[attribute$='value']")
参数 | 描述 |
---|---|
attribute | 必填。指定要查找的属性 |
value | 必填。指定值应以其结尾的字符串 |