1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$(document).ready(function(){
includeJs('/jquery.ui.touch-punch.min.js');
});
function includeJs(jsFilePath){
var head = document.getElementsByTagName('head')[0];
var js = document.createElement('script');
js.type = 'text/javascript';
js.src = jsFilePath;
js.onreadystatechange = function(){
if(this.readyState == 'complete' || this.redyState == 'loaded'){
console.log("로드완료");
}
js.onload;
}
head.appendChild(js);
}
|
cs |
화면 로드 후 동적으로 js 파일을 추가해야 할 경우 위와같이 js 파일명과 경로만으로 동적 추가가 가능하다.
'WORK > JQUERY' 카테고리의 다른 글
서로 다른 도메인의 window open 팝업 닫힘 체크 (0) | 2023.01.19 |
---|---|
동일한 태그값에 서로 다른 value 값 가져오기 (1) | 2022.11.23 |
jquery 타이틀 변경하기 (0) | 2020.10.08 |
readonly inputBox 값 변경시 onchange 효과 (0) | 2020.06.24 |
스크립트에서 html을 만들고 펑션에 파라미터 보내기 (0) | 2019.06.13 |