待研究
Posted 小白闯天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了待研究相关的知识,希望对你有一定的参考价值。
// 动态加载script $.load_script = function(xyUrl, callback) { var head = doc.getElementsByTagName(‘head‘)[0]; var script = doc.createElement(‘script‘); script.type = ‘text/javascript‘; script.src = xyUrl; // 借鉴了jQuery的script跨域方法 script.onload = script.onreadystatechange = function() { if ((!this.readyState || this.readyState === "loaded" || this.readyState === "complete")) { callback && callback(); // Handle memory leak in IE script.onload = script.onreadystatechange = null; if (head && script.parentNode) { head.removeChild(script); } } }; // Use insertBefore instead of appendChild to circumvent an IE6 bug. head.insertBefore(script, head.firstChild); };
以上是关于待研究的主要内容,如果未能解决你的问题,请参考以下文章