延迟时间不一样
var mysecond=document.getElementById("seconds").innerHTML;
function goBack(){window.history.go(-1); }
function delayback(){setInterval("goBack()",5000); }
function second(){
mysecond--;
document.getElementById("seconds").innerHTML=mysecond;
setInterval("second()",1000); }
为什么delay()和second()两个函数延迟的时间不一样,后者快很多很多(用的360浏览器)