有人可以解释一下,为什么我们需要每个(功能(i)
做(i)
什么?似乎i
可以是任何字母。为什么(i)
是必要的?我不太明白。非常感谢
<body>
<div>Click here</div>
<div>to iterate through</div>
<div>these divs.</div>
<script>
$(document.body).click(function () {
$( "div" ).each(function (i) {
if ( this.style.color != "blue" ) {
this.style.color = "blue";
} else {
this.style.color = "";
}
});
});
</script>