定时器


1
setTimeout(fun, 2000)
1
setTimeout(fun(), 2000)
1
setTimeout('fun()', 2000)
1
2
3
setTimeout(function () {
alert('hello')
}, 2000)
1
2
3
4
function () {
alert('hello')
}
var mm = setTimeout(fun, 2000)
1
2
3
4
5
function () {
alert('hello')
}
var mm = setTimeout(fun, 2000)
clearInterval(mm)