我有一段使用Javascript编写的代码,我希望能够在网站完全加载5分钟后运行它。这是可能的?我该怎么办?
这是我希望您在5分钟后运行的代码。
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5c34cd02361b3372892f0a3e/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
答案 0 :(得分:2)
这应该为您完成工作。
$(window).on('load', function() {
setTimeout(() => {
// code here
}, 300000);
});
答案 1 :(得分:0)
您可以使用setTimeout
来做到这一点。
$(window).load(function () {
setTimeout(function () {
// put your code here
}, 5*60*1000);
});