jquery id选择器和class选择器的区别

时间:2022-12-18 16:42:23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="jquery-2.1.4.js"></script>
<script>
$(function(){
alert($('.box').size()); //返回2
});
</script>
</head>
<body>
<p class="box">hello</p>
<p class="box">world</p>
</body>
</html>

size() 方法返回DOM对象的个数

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="jquery-2.1.4.js"></script>
<script>
$(function(){
alert($('#box').size()); //只能获得一个id=box的DOM对象,返回1
});
</script>
</head>
<body>
<p id="box">hello</p>
<p id="box">world</p>
</body>
</html>

id是唯一的,即使有多个id相同的元素,jquery选择器也只能获取其中一个 。所以:想在jquery中对id设置动作, id在页面中只允许出现一次。

对于CSS样式来说,可以选取页面中所有id=box的DOM对象

  1. 兼容性:ID兼容,class 不兼容IE6,7,8

  2. 数量: 通过ID只能获取一个dom元素,通过class可以获取一组元素。

  3. 通用性:ID不能重复,class可以重复,所以class比较好用,这也是jQuery能被广泛应该的原因(选择器好)。