我正在尝试向游戏中添加功能,但是要使元素具有交互性非常困难。起初,我遇到诸如
的错误getElementByClassName不是函数
所以我尝试为事件处理程序设置回调函数。我没有任何错误,但是在控制台中没有输出。 :/
有什么我想念的吗?
let repeatbtn = document.getElementsByClassName('restart');
function restartAlert() {
console.log
('You\'ve restarted the game!');
}
function restart(){
repeatbtn.addEventListener('click', restartAlert ()
);}