利用console自动检测颜色
测试地址:http://yanhaijing.com/color/
function timedCount()
{
jQuery("div").each(function(){
if($(this).css("background-color") != $(this).prev().css("background-color") && $(this).css("background-color") != $(this).next().css("background-color")){
$(this).trigger("click");
}
});
t=setTimeout("timedCount()",1)
}
网友评论