js 操作样式属性

js  操作样式属性

 

 

<script>
        var div = document.querySelector(‘div‘);
        div.onclick = function() {
            this.style.backgroundColor = ‘purple‘;
            this.style.width = ‘250px‘;
        }
    </script>

 

  var btn = document.querySelector(‘.close-btn‘);
        var box = document.querySelector(‘.box‘);
        btn.onclick = function() {
            box.style.display = ‘none‘;
        }

js 操作样式属性

上一篇:html鼠标自定义右键菜单:css+js实现自定义html右键菜单


下一篇:?PHP去掉字符串中的“#”