2014-02-14 109 views
0

非常感謝您的幫助。我很難完成addClass方法的一個非常簡單的例子。我讀過一堆資源,但仍然無法弄清楚。任何想法爲什麼這不起作用?使用addClass方法的JQuery問題

<html> 
    <head> 
     <style>.blueright {color:blue;}</style> 
     <script src="//code.jquery.com/jquery-1.10.2.js"></script> 
    </head> 
    <body> 

     <h4 id="test">asdf</h4> 
     <script> $("#test").addClass("blueright"); </script> 
    </body> 
</html> 

我在做什麼錯?再次感謝你! -Dan

+0

工作http://jsfiddle.net/cse_tushar/ 72mN7/ –

+0

just fine http://plnkr.co/edit/xKvXBv3pIc38KzKGwmCq?p=preview –

+0

你是如何打開文件的? – Satpal

回答

1

Working Fiddle

你的代碼工作良好。


問題是jQuery庫加載

嘗試腳本URL

<script src="//code.jquery.com/jquery-1.10.2.js"></script> 

<script src="http://code.jquery.com/jquery-1.10.2.js"></script> 


瀏覽器改變需要 //code.jquery.com/jquery-1.10.2.js它作爲

如果您在本地PC比將採取的工作是file://code.jquery.com/jquery-1.10.2.js"

,但在服務器上它把它作爲http://code.jquery.com/jquery-1.10.2.js"

所以最好使用<script src="http://code.jquery.com/jquery-1.10.2.js"></script>