我希望仅在单击按钮时才调用 alertMe 函数,但只要页面加载,它就会被调用(调用 setInterval 来调用它)。但是如果我把 pageLoad 函数拿走,那么 startButton 是空的,我不能用它做任何事情。提前谢谢大家!
/when user clicks start, start the animation
window.onload = pageLoad;
function pageLoad() {
var startButton = document.getElementById("start");
startButton.onclick = setInterval(alertMe,200);
}
function alertMe() {
alert("hi");
}