[jQuery] jQuery 라이브러리를 동적으로 로드시키기

Published on: 2013. 11. 14. 13:12 by louis.dev
스크립트 작업을 하다보면 때에 따라서 스크립트 라이브러리를 동적으로 로드해야 하는 경우가 생길수 있습니다. 만약  이와 같은 경우가 생기면 아래의 코드로 해당 스크립트 라이브러리를 이용하여 동적으로 로드시킬 수 있습니다.
window.onload = function(){
	if(typeof jQuery == 'undefined') {
		var jqueryElement = document.createElement('script');
		jqueryElement.src = 'http://code.jquery.com/jquery-1.7.2.min.js';

		jqueryElement.onload = function(){
			//여기에 jquery를 이용한 스크립트를 입력하면 됩니다.
			$("body").html("여기에 들어갑니다.");
		}

		document.getElementsByTagName('head')[0].appendChild(jqueryElement);
	}
}