if (index % 2) 这是什么意思
$("li").each(function(index, element) {
if (index % 2) {
$(this).css('color','blue')
}
})
$("li").each(function(index, element) {
if (index % 2) {
$(this).css('color','blue')
}
})
2017-04-20
举报