Jquery css函數用法(判斷標籤是否擁有某屬性)

來源:互聯網
上載者:User

判斷一個層是否隱藏: 複製代碼 代碼如下:$("#id").css("display")=="none" ;

在所有匹配的元素中,設定一個樣式屬性的值:

複製代碼 代碼如下:$("p").css("color","red");

把一個“名/值對”對象設定為所有匹配元素的樣式屬性。
這是一種在所有匹配的元素上設定大量樣式屬性的最佳方式

複製代碼 代碼如下:$("p").css({ color: "#ff0011", background: "blue" });

如果屬性名稱包含 "-"的話,必須使用引號:

複製代碼 代碼如下: $("p").css({ "margin-left": "10px", "background-color": "blue" });
相關文章

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.