桌子的细胞在短时间内变成红色。细胞由随机数选择。
当单元格为红色时,用户应单击该单元格。
如果他在单元格仍然是红色时单击单元格,那么他得到一个点。
这就是主意。但它不起作用。当我点击单元格时没有任何反应。
document.addEventListener('readystatechange', function(evt) {
if (evt.target.readyState === "complete") {
document.addEventListener("copy", function() {
alert('copied')
}, true);
}
}, false);
答案 0 :(得分:0)
将第二个if块拉出第一个:
if (blinkColor == blinkColors.length+1) {
blinkColor = 0;
blinkCell.style.backgroundColor = "transparent";
iterator++;
}
if (iterator == zw.length) {
alert("You hit. " + hit);
clearInterval(myBlink);
} else {
doBlink(zw[iterator]);
}