コードは次のとおりです。
var otherJScipt = document.createElement("script ");
otherJScipt = document.createElement("script");
otherJScipt.setAttribute("type", "text/javascript"); ", "/xxx.js");
document.getElementsByTagName("head")[0].appendChild(otherJScipt);//head タグに追加
// server
if (navigator .userAgent.indexOf("IE") >= 0) {
//IE でのイベント
otherJScipt.onreadystatechange = function () {
//IE での判断読み込みが完了したかどうかを判断します
if (otherJScipt && (otherJScipt.readyState == "loaded" || otherJScipt.readyState == "complete")) {
otherJScipt.onreadystatechange = null;
}
};
}
else {
otherJScipt.onload = function () {
otherJScipt.onload = null;
}