返回> 网站首页 

动态创建script标签,判断加载完成调用

yoours2021-11-11 14:09:48 阅读 2228

简介一边听听音乐,一边写写文章。

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);


微信小程序扫码登陆

文章评论

2228人参与,0条评论