美文网首页
2-1样式操作

2-1样式操作

作者: 大庆无疆 | 来源:发表于2019-03-13 23:44 被阅读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"});
    

    相关文章

      网友评论

          本文标题:2-1样式操作

          本文链接:https://www.haomeiwen.com/subject/kxffmqtx.html