美文网首页
样式操作(css方法)

样式操作(css方法)

作者: 琪33 | 来源:发表于2018-04-26 16:14 被阅读0次
     <script src="jquery-1.11.1.js"></script>
        <script>
            $(function () {
    
                //样式操作方法1(建值对的写法):  css(json);
    //            $("div").css({"width":100,"height":100,"background-color":"pink"});
    
                //样式操作方法2(链式编程):  css(属性,值);
                $("div").css("background-color","red").css("width",100px,");
    
                //样式操作方法3:  
                 $("div").css("background-color","red");
                 $("div").css("width",100px,");
            })
        </script>
    </head>
    <body>
    <div></div>
    <div style="width: 200px;height:300px;background: yellow"></div>
    <div style="width: 200px;height:300px;background: yellow"></div>
    <div style="width: 200px;height:300px;background: yellow"></div>
    </body>
    

    相关文章

      网友评论

          本文标题:样式操作(css方法)

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