2011-12-21 84 views
2

如何檢查jQuery是否加載到頁面中?我必須運行一個jQuery腳本,它有一個jQuery庫鏈接,但是當我使用代碼時,我只想確保只在頁面沒有任何jQuery文件時加載該文件,否則使用該文件。有什麼建議麼?如何檢查jQuery文件是否加載到頁面上?

回答

7
if (typeof jQuery == 'undefined') { 
    // This means jQuery is not loaded 
} 

而且,看看yepnope.js,它可以讓你如果某些條件爲真或假負載根據不同的JavaScript文件。

4
if (typeof jQuery != 'undefined') { 
// jQuery is loaded 
} 
0

要檢查是否jQuery是加載頁面的嘗試:

if (!(window.jQuery || window.$)){ 
//then load it 
} else { 
//already loaded 
} 
1

最簡單的:

if(window.jQuery) { 

// you code here 
} 
相關問題