黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

jQuery css() 方法

jQuery css() 方法

 

1. jQuery css() 方法

css() 方法設(shè)置或返回被選元素的一個(gè)或多個(gè)樣式屬性。

 

2. 返回 CSS 屬性

如需返回指定的 CSS 屬性的值,請(qǐng)使用如下語法:

css("propertyname");

下面的例子將返回首個(gè)匹配元素的 background-color 值:

范例

$("p").css("background-color");

 

3. 設(shè)置 CSS 屬性

如需設(shè)置指定的 CSS 屬性,請(qǐng)使用如下語法:

css("propertyname","value");

下面的例子將為所有匹配元素設(shè)置 background-color 值:

范例

$("p").css("background-color","yellow");

 

4. 設(shè)置多個(gè) CSS 屬性

如需設(shè)置多個(gè) CSS 屬性,請(qǐng)使用如下語法:

css({"propertyname":"value","propertyname":"value",...});

下面的例子將為所有匹配元素設(shè)置 background-color 和 font-size:

范例

$("p").css({"background-color":"yellow","font-size":"200%"});

下一節(jié):jQuery 尺寸

jQuery 教程

相關(guān)文章