我们的跟踪代码管理器今天出现故障,导致我们的网站爬网。由于标签管理器中的代码不是关键任务(分析等),有没有办法做类似下面的事情?
var extScript = document.createElement('script');
extScript.type = 'text/javascript';
extScript.src = 'http://third-party.com/scriptfile.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(extScript, s);
window.setTimeout(function () {
// if script not loaded - "give up"
}, 3000); // 3 secs