我正面临第 n 个子选择器的非常奇怪的行为。
当我调用函数BackColor1()时,我的视觉效果如下:
怎么了。如果我调用BackColor2()一切看起来都很好。
有人可以解释一下诀窍在哪里以及我在BackColor1()函数中做错了什么吗?
这是我的示例 HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(document).ready(function () {
//BackColor1();
//BackColor2();
});
function BackColor1() {
$("li:nth-child(2n+1) > div").css({ "background": "#F2F2F2" });
}
function BackColor2() {
$("li").each(function (key, val) {
if (key % 2 == 0) {
$(this).children("div").css({ "background": "#F2F2F2" });
}
});
}
</script>
</head>
<body>
<ul>
<li>
<div>Video Streaming</div>
<ul>
<li><div>VOD</div></li>
<li><div>Progressive Streaming</div></li>
</ul>
</li>
<li><div>Middle Lesson Without Chapter</div></li>
<li>
<div>File Download</div>
<ul>
<li><div>Direct Download</div></li>
</ul>
</li>
<li><div>Pre Last Lesson Without Chapter</div></li>
<li><div>Last Lesson Without Chapter</div></li>
</ul>
</body>
</html>