2012-11-20 55 views
1

我已經準備好了一些類似的問題,並已驗證了jQuery是包括第一位的腳本...「未捕獲的ReferenceError:jQuery是沒有定義」 - 但它是

// this test confirms that jquery is defined 
if (typeof jQuery == 'undefined') { 
    alert('jquery not defined');  
} 
// (this is being alerted) 
else { alert('jquery is defined'); } 

// this is what I want to achieve (to begin with) 
jquery("#free-signup").css('display', 'none'); 

和jQuery似乎被定義... 我究竟做錯了什麼?!

+4

jQuery的jQuery的=大 – Kayo

回答

4

JavaScript區分大小寫。您應該使用正確的對象名稱:

// v 
    jQuery("#free-signup").css('display', 'none'); 

或快捷鍵:

$("#free-signup").css('display', 'none'); 
+0

,感謝@VisioN! (接受計時器滴答下來..) – ptim

相關問題