2011/11/06

動態載入 jQuery

現在很多瀏覽器都有 console 的功能(連很爛的 IE 都有了),所以如果懂 DOM 又是 jQuery 熟手的話,透過 console 去處理一些事情會格外方便,但如果該網站預設並不是使用 jQuery 的話,我們可以試著動態的載入 jQuery 的內容使用。

var theHead = document.getElementsByTagName("head")[0]; 
var theJs = document.createElement('script');
theJs.type = 'text/javascript';
theJs.src= "http://code.jquery.com/jquery-1.7.min.js";
theHead.appendChild(theJs);

沒有留言: