JS操控按钮问题:Uncaught TypeError: Cannot set property ‘display‘ of undefined at doStart (main.html:76)

问题

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>随机点名器</title>
    <style>
        *{margin: 0px;padding: 0px;}
        
        .name{
            position: fixed;
            width: 50%;
            height: 50%;
            background-color:sienna;
            border-radius: 40px;
            margin-top: 50px;
            margin-left: 384px;
        }
        .name .nameText{
            position: fixed;
            font-size: 100px;
            font-family: "楷体";
            margin-top: 110px;
            margin-left: 130px;
        }
        .sae{
            display: block;
            position: fixed;
            width: 160px;
            height: 50px;
            border-radius: 20px;
            margin-left: 680px;
            margin-top: 480px;
            border:inherit;
            background-color: grey;
        }
        .sae .saeText{
            font-family: "楷体";
            font-size: 23px;
            color:greenyellow;
        }
        .sae:hover{background-color: hotpink;}
        .sae .saeText:hover{color:green;}

        .stop{
            display: none;
            position: fixed;
            width: 160px;
            height: 50px;
            border-radius: 20px;
            margin-left: 680px;
            margin-top: 480px;
            background-color: grey;
        }
    </style>
</head>
<body>
    
    <div class="name">
        <div class="nameText">随机点名器</div>     
    </div>
    <button class="sae" onclick="doStart(this)">
        <div class="saeText">开始</div>
    </button>
    <button class="stop">
        <div class="saeText">停止</div>
    </button>
    
</body>
<script>
    function doStart(obj){
           
        obj.style.display="none";
        var stop = document.getElementsByClassName("stop");
        stop.style.display="block";
    }
</script>
</html>

在这里插入图片描述
点击按钮这个按钮会消失并且会使另一个按钮开启,但是却报错了。
在这里插入图片描述
网上查了很多资料:
在这里插入图片描述
大同小异,但是还是没有解决问题,代码都是相似的。

正确解决方式:

集合是没有display属性的,集合中的元素才有display属性。当你试图做 集合.style.display的时候,自然会报错。
遍历集合中所有的元素,然后给每个元素都加上display="none"的属性。示例代码如下:

function doStart(obj){    
        obj.style.display="none";
        var stop = document.getElementsByClassName("stop");
        for (var i = 0; i<stop.length;i++) {
        		   stop[i].style.display="block";
        	};
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值