在方形游戏中,2名玩家(1名玩家尚未工作),当玩家获胜时,div会弹出并祝贺他们。 div有一个onclick函数来关闭div,但是onclick函数似乎没有执行而且div没有关闭。
win.setAttribute('onclick', 'close()');
}
function on_win(winner) {
document.getElementById('win').style.display = 'inline-block';
document.getElementById('win_center').appendChild(winner);
}
function close() {
console.log("close");
document.getElementById('win').style.display = 'none';
}
答案 0 :(得分:0)
你可以试试这个:
win.onclick = close;