你好,它来自 jQuery 文档的简单示例,我想知道为什么会有
$(document.body).click(function () {
$( "div" ).each(function (i) {
if ( this.style.color != "blue" ) {
this.style.color = "blue";
} else {
this.style.color = "";
}
});
});
为什么有函数(i)?它等同于 function() 并且在执行时没有区别。谢谢