js动态加载以及确定加载完成的代码
代码如下: 代码如下: var otherJScipt = document.createElement(“script”); otherJScipt = document.createElement(“script”); otherJScipt.setAttribute(“type”, “text/javascript”); otherJScipt.setAttribute(“src”, “/xxx.js”); document.getElementsByTagName(“head”)[0].appendChild(otherJScipt);//追加到head标签内 //判断服务器 if
用户评论