window.onload=function(){
var timer=null;
var start=document.getElementById("start");
start.onclick=starton(timer);
start.onclick=stopon(timer);
}
function starton(timer){
timer=setInterval(function(){...},500);
}
function stopon(timer){
clearInterval(timer);
}
上述代码无法实现(不用直接写匿名函数的方法),应该如何改正?