How to load another .js file in a .js file?
예제
test.js파일에서 다른 .js파일(jquery.js)을 불러오고 싶을 때, 아래와 같이
test.js 파일에 아래와 같이 자바스크립트 함수 하나를 만들어주고
addJavascript('/js/jquery.js'); 와 같이 쓰면 다른 자바스크립트 파일을
불러올 수 있다.
function addJavascript(jsname) {
var th = document.getElementsByTagName('head')[0];
var s = document.createElement('script');
s.setAttribute('type','text/javascript');
s.setAttribute('src',jsname);
th.appendChild(s);
}
addJavascript('/js/jquery.js');
/* 자바스크립트 함수 기술 */
$(function() {
..................
});
'Development > Javascript' 카테고리의 다른 글
MP3 player with javascript ( SWFObject ....) (0) | 2012.05.02 |
---|---|
재미있는 JavaScript 코드 (0) | 2010.01.03 |
document.location.replace()와 document.location.href의 차이 (0) | 2009.07.25 |
javascript:void(0) 란? (1) | 2009.07.25 |
그림 움직이게하는 코드 (0) | 2008.01.20 |
미디어파일 재생시 재생퍼센트와 남은시간 표시하기 (0) | 2006.07.18 |
아이프레임 자동으로 늘어나는 자바 스크립트. (0) | 2006.06.26 |
접속할 때 마다 다른 음악 재생하기 (0) | 2005.07.17 |
댓글