您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么檢測jquery是否已加載,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
檢測jquery是否已加載的方法:1、判斷【jQuery()】是否被定義,代碼為【if (jQuery) { jQuery 已加載}】;2、判斷【$()】是否被定義,代碼為【if(typeof jQuery == 'undefined'】。
檢測jquery是否已加載的方法:
當前網(wǎng)頁加載jQuery后,jQuery()
或$()
函數(shù)將會被定義,所以檢測jQuery是否已經(jīng)加載存在以下2種方法:
方法1:
if (jQuery) { // jQuery 已加載 } else { // jQuery 未加載 }
方法2:
if (typeof jQuery == 'undefined') { // jQuery 未加載 } else { // jQuery 已加載 }
備注:
以上我們通過檢測jQuery函數(shù)是否已定義,這是一個比較安全可靠的方法,因為當你加載jQuery.js后,可能會再加載prototype.js或mootools.js等,其中可能會重定義$()
函數(shù), 檢測$()函數(shù)是否存在將會不準確。
平時我們加載jquery,如果帶寬與速度不是很好的情況可以考慮引用第三方的jquery
<script src="//apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <script type="text/javascript"> if (typeof jQuery == 'undefined') { document.write(unescape("%3Cscript src='/skin/mobile/js/jquery.min.js' type='text/javascript'%3E%3C/script%3E")); } </script>
或者
<script src="http://lib.sinaapp.com/js/jquery11/1.8/jquery.min.js"></script> <script>window.jQuery || document.write(unescape("%3Cscript src='/skin/mobile/js/jquery.min.js' type='text/javascript'%3E%3C/script%3E"))</script>
感謝你能夠認真閱讀完這篇文章,希望小編分享的“怎么檢測jquery是否已加載”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。