美文网首页
jquery css

jquery css

作者: 程序猿的小生活 | 来源:发表于2022-07-04 14:29 被阅读0次
    $(function(){
        //jquery多样式设置
        $("#app").css({
            "width":"300px",
            "height":"300px",
            "background-color":"red",
            "border":"5px solid green"
        })
        //jquery单样式设置
        
        $("#singlestyle").css("background-color","green")
        $("#singlestyle").css("width",300)
        $("#singlestyle").css("height","300px")
    })
    

    相关文章

      网友评论

          本文标题:jquery css

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