颜海镜大触的色狼游戏
2016-04-16 本文已影响30人
李天火
利用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)
}