JS基础-使用CSS操作内联样式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style type="text/css">
        #box1{
            width: 200px;
            height: 200px;
            background-color: blue;
        }
    </style>
    <script type="text/javascript">
        window.onload = function(){
            /*
                点击btn01,修改box1的大小
            */
            var btn01 = document.getElementById('btn01');
            btn01.onclick = function(){
                var box1 = document.getElementById('box1');
                /*
                    通过JS修改元素的样式:
                    -语法:元素.style.样式名 = 样式值
                    注意:如果CSS的样式名中含有-,
                        这种名称在JS中是不合法的,比如background-color
                        需要将这种样式名修改为驼峰命名法
                        去掉-,然后将-后的字母大写
                    
                    通过style属性设置的样式,都是内联样式,
                        内联样式有较高的优先级,所有通过JS修改的样式往往会立刻显示
                    
                    但是如果在样式中写了 !important,则此样式会有最高的优先级,
                        即时通过JS也不能覆盖样式,此时将会导致JS修改样式失效
                        所以,尽量不要为样式添加 !important
                */
                box1.style.width = '300px';
                box1.style.height = '300px';
                box1.style.backgroundColor = 'red';
            };

            // 点击按钮2以后,读取元素的样式
            var btn02 = document.getElementById('btn02');
            btn02.onclick = function(){
                // 读取box1样式
                // 语法: 元素.sytle.样式名
                // 通过style属性,读取和设置都是内联样式.无法读取样式表中的样式
                var box1 = document.getElementById('box1');
                alert(box1.style.width);
            };
        };
    </script>
</head>
<body>
    <button id="btn01">按钮1</button>
    <button id="btn02">按钮2</button>
    <div id="box1"></div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值