JQuery:延迟后运行代码?

时间:2016-11-28 04:35:59

标签: javascript jquery url window delay

以下是代码:

window.location.replace('http://thewebsiteurl');

如何在延迟0.1秒后运行此代码?

-Thanks

2 个答案:

答案 0 :(得分:0)

使用setTimeout

setTimeout(() => window.location.replace('http://thewebsiteurl'), 100) // in milli seconds

答案 1 :(得分:0)

如果您有队列:

.delay( milliseconds [, queueName ] )

The delay method