一、获取css属性
$("p").css("background-color");
二、设置单个css属性
$("p").css("background-color","yellow");
三、设置多个csss属性
$("p").css({"background-color":"yellow","font-size":"200%"});
一、获取css属性
$("p").css("background-color");
二、设置单个css属性
$("p").css("background-color","yellow");
三、设置多个csss属性
$("p").css({"background-color":"yellow","font-size":"200%"});