16点击按钮设置div的宽,高,背景颜色

<input type="button" value="设置样式" id="btn18" />
        <div id="dv"></div>
        <script type="text/javascript">
            //凡是css中这个属性是对个单词的写法,在jsDOM操作的时候,把-去掉,
            //后面单词的首字母大写即可.比如:background-color 写成 backgroundColor
            function my$(id) {
                return document.getElementById(id);
            }
            my$("btn18").onclick=function(){
                my$("dv").style.width="300px";
                my$("dv").style.height="300px";
                my$("dv").style.backgroundColor="hotpink";
            };
        </script> 

 

posted @ 2019-08-28 14:56  鱼七姑娘  阅读(387)  评论(0编辑  收藏  举报