스크립트 작업을 하다보면 때에 따라서 스크립트 라이브러리를 동적으로 로드해야 하는 경우가 생길수 있습니다.
만약 이와 같은 경우가 생기면 아래의 코드로 해당 스크립트 라이브러리를 이용하여 동적으로 로드시킬 수 있습니다.
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); } }
'Web > jQuery' 카테고리의 다른 글
[jQuery] 엘리먼트의 속성값을 array로 가져오는 방법 (0) | 2013.11.14 |
---|---|
[jQuery] jQuery Library 사용유무 확인하기 (0) | 2013.11.14 |