jQuery [attribute] 选择器
实例
选择每个具有 id 属性的元素:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("[id]").css("background-color", "yellow");
});
</script>
</head>
<body>
<h2>欢迎来到我的主页</h2>
<p class="intro">我的名字叫 Donald.</p>
<p>我居住在 Duckburg.</p>
<p>我最好的朋友是 Mickey.</p>
谁是你最喜欢的:
<ul id="choose">
<li>Goofy</li>
<li>Mickey</li>
<li>Pluto</li>
</ul>
</body>
</html>
定义与用法
[attribute]
属性选择器选择具有指定属性的每个元素。
语法
$("[attribute]")
参数 | 描述 |
---|---|
attribute | 必填。指定要查找的属性 |