jQuery學習入門總結之css()和addClass()的不同

來源:互聯網
上載者:User
  jQuery學習入門之css()和addClass()的不同
  這兩天研究jQuery的,剛剛開始入門,從昨天開始呢,就發現一個方法addClass的,教程裡有一個方法是這樣寫的
  $(document).ready(function() {
      $("p").addClass("red");
     });
  但是沒有仔細看這個的,以為red是具體的顏色red,然後當我自己寫例子,定義了一個$("p").addClass("Green");
  運行後卻沒有發現css有什麼改變,今天仔細研究了下,My God,例子中的red是已經在css裡定義好的類型,我卻誤認為是red顏色了,歸根結底是自己對css不太瞭解的緣故。然後自己在css檔案中定義了一個 .Green{color:green;}的樣式,試了下,果然是可以的。
  關於css(),這個方法的定義是:在所有匹配的元素中,設定一個樣式屬性的值,
  例子: $("p").css("color","red"); 前面是屬性名稱,後面是屬性的具體參數。
 決定,學習到了的知識都發到部落格上,讓自己有點小小的成就感……
 好了,繼續我的jQuery
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.