코드는 다음과 같습니다.
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 태그에 추가
//판단 server
if (navigator .userAgent.indexOf("IE") >= 0) {
//IE 아래 이벤트
otherJScipt.onreadystatechange = function () {
//IE 아래 판단 로딩이 완료되었는지 확인
if (otherJScipt && (otherJScipt.readyState == "loaded" || otherJScipt.readyState == "complete")) {
otherJScipt.onreadystatechange =
callMyFun();
}
};
}
else {
otherJScipt.onload = function() {
otherJScipt.onload = null;
}