2-1样式操作
2019-03-13 本文已影响0人
大庆无疆
第一种设置元素样式的代码方式:
$("ul>li").css("backgroundColor","yellow");
$("ul>li").css("fontSize","50px");
第二种设置元素样式的代码方式:链式编程
$("ul>li").css("backgroundColor","yellow").css("fontSize","50px");
第三种设置元素样式的代码方式:键值对
$("ul>li").css({"backgroundColor":"yellow","fontSize":"50px"});