[attribute]
选择含有特定属性的元素,不管属性值是什么都可以。
-
1.0 新增[attribute]
attribute (String) 属性名。
示例:
绑定一个事件,让含有 id 属性的 div 元素,在点击后把自己的 id 添加进自己的文本中。
<!DOCTYPE html>
<html>
<head>
<script src="jquery.min.js"></script>
</head>
<body>
<div>no id</div>
<div id="hey">with id</div>
<div id="there">has an id</div>
<div>nope</div>
<script>
$('div[id]').one('click', function(){
var idString = $(this).text() + ' = ' + $(this).attr('id');
$(this).text(idString);
});
</script>
</body>
</html>