JavaScript动态引用外部js文件
JavaScript动态引用外部js文件
http://ajax.useso.com/ajax/libs/jquery/1.7.2/jquery.min.js
http://ajax.useso.com/ajax/libs/jquery/1.9.1/jquery.min.js
//添加到body结束位置
var scriptElement=document.createElement("script");
scriptElement.setAttribute("type","text/javascript");
scriptElement.setAttribute("src","http://ajax.useso.com/ajax/libs/jquery/1.4.2/jquery.min.js");
document.body.appendChild(scriptElement);
//添加到head标签位置
var scriptElement= document.createElement("script");
scriptElement.type = "text/javascript";
scriptElement.src="http://ajax.useso.com/ajax/libs/jquery/1.4.2/jquery.min.js";
document.getElementsByTagName('HEAD').item(0).appendChild(scriptElement);
» 本文链接:https://blog.apires.cn/archives/1742.html
» 转载请注明来源:Java地带
» 《JavaScript动态引用外部js文件》
» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!
» 订阅本站:https://blog.apires.cn/feed/