长风在西瓜糖里
Blog
Books
Garden
setTimeout()
2024-02-18
指定 x 毫秒后调用函数。
1
setTimeout
(
function
()
{
2
alert
(
"
42
"
)
3
},
3000
)
// 3秒后运行
#
WebAPI
#
Web