大问题~~~~~!
$("body:has('label')").css("background-color", "blue");
为什么这样写选不中label啊
$("body:has('label')").css("background-color", "blue");
为什么这样写选不中label啊
2015-06-21
<body>
<div>改变包含"label"元素的背景色:</div>
<ol>
<li><p>我是P先生</p></li>
<li><label>L妹纸就是我</label></li>
<li><p>我也是P先生</p></li>
<li><label>我也是L妹纸哦</label></li>
<li><p>P先生就是我哦</p></li>
</ol>
<script type="text/javascript">
$("li:has('label')").css("background-color", "blue");
$("li label").css("background-color", "red");
</script>
</body>
做个小实验,注意两个选择器的区别
举报