首页 > 其他 > 详细

待研究

时间:2018-06-04 12:30:01      阅读:164      评论:0      收藏:0      [点我收藏+]
	// 动态加载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);
	};

  

待研究

原文:https://www.cnblogs.com/xiaobaichuangtianxia/p/9132443.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!