Simple Is Best

[jQuery] .js 파일 내에서 jQuery 문법 사용하려면? 본문

Error 일기

[jQuery] .js 파일 내에서 jQuery 문법 사용하려면?

데이터미널 2021. 8. 2. 12:01

.js 파일 내에 해당 코드를 복붙 후 init 함수 내에서 jQuery 문법을 사용하면 된다. 

 

function init() {
   // functin init 내에서 jQuery 사용
}

var scriptElement = document.createElement('script');
scriptElement.src = 'http://code.jquery.com/jquery-latest.js';

scriptElement.onloadDone = false;
scriptElement.onload = function () {
    scriptElement.onloadDone = true;
    init();
}
scriptElement.onreadystatechange = function () {
    if (("loaded" === scriptElement.readyState || "complete" === scriptElement.readyState) &&
        !scriptElement.onloadDone) {
        scriptElement.onloadDone = true;
        init();
    }
};
document.getElementsByTagName('head')[0].appendChild(scriptElement);