通过此例子,可明白定时器的功能。

setTimeout(aa(),1000) //单位毫秒
function aa(){
location.href('地址');
}