返回> 网站首页
动态创建script标签,判断加载完成调用
yoours2021-11-11 14:09:48
简介一边听听音乐,一边写写文章。
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.charset = 'utf-8';
script.onload = script.onreadystatechange = function() {
if (!this.readyState || this.readyState === "loaded" || this.readyState === "complete" ) {
callback();
script.onload = script.onreadystatechange = null;
}
};
script.src= url;
head.appendChild(script);
文章评论
2676人参与,0条评论