W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
訪問匹配元素的樣式屬性。
jQuery 1.8中,當你使用CSS屬性在css()或animate()中,我們將根據(jù)瀏覽器自動加上前綴(在適當?shù)臅r候),比如("user-select", "none"); 在Chrome/Safari瀏覽器中我們將設置為"-webkit-user-select", Firefox會使用"-moz-user-select", IE10將使用"-ms-user-select".
要訪問的屬性名稱
要設置為樣式屬性的名/值對
屬性名,屬性值
1:屬性名
2:此函數(shù)返回要設置的屬性值。接受兩個參數(shù),index為元素在對象集合中的索引位置,value是原先的屬性值。
取得第一個段落的color樣式屬性的值。
$("p").css("color");
將所有段落的字體顏色設為紅色并且背景為藍色。
$("p").css({ color: "#ff0011", background: "blue" });
將所有段落字體設為紅色
$("p").css("color","red");
逐漸增加div的大小
$("div").click(function() {
$(this).css({
width: function(index, value) {
return parseFloat(value) * 1.2;
},
height: function(index, value) {
return parseFloat(value) * 1.2;
}
});
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: