dynamic javaScript insertion
Language/JAVASCRIPT 2011. 8. 9. 11:38
function JSONscriptRequest(fullUrl) {
this.fullUrl = fullUrl;
this.headLoc = document.getElementsByTagName("head").item(0);
};
JSONscriptRequest.prototype.buildScriptTag = function () {
this.scriptObj = document.createElement("script");
this.scriptObj.setAttribute("type", "text/javascript");
this.scriptObj.setAttribute("src", this.fullUrl);
};
JSONscriptRequest.prototype.removeScriptTag = function () {
this.headLoc.removeChild(this.scriptObj);
};
JSONscriptRequest.prototype.addScriptTag = function () {
this.headLoc.appendChild(this.scriptObj);
};
var JSONscript = new JSONscriptRequest(req);
JSONscript.buildScriptTag();
JSONscript.addScriptTag(); 'Language > JAVASCRIPT' 카테고리의 다른 글
javascript sleep (0) | 2011.08.31 |
---|---|
body width, height [cross browsing] (0) | 2011.08.09 |
자바스크립트 맵, javaScript Map (0) | 2011.08.09 |
클래스명으로 엘리멘트 얻기, getElementsByClassName() (0) | 2011.08.09 |
자바스크립트(javascript) 배열(array) 사용 (0) | 2011.07.27 |