为什么在if (index % 2),当其值为0是,是假?
if (index % 2) { $(this).css('color','blue') 怎么理解?(其判断规则,何时为真,何时又为假?)
$("button:last").click(function() {
//遍历所有的li
//修改偶数li内的字体颜色
$("li").each(function(index, element) {
if (index % 2) {
$(this).css('color','blue')
}
})
})
</script>