Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

javascript能运行但是控制台报错‘click' handler

image
本人初学。向大家请教。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>事件监听</title>
    <style>
        #box{
            width: 100px;
            height: 100px;
            background-color: palegreen;
        }
    </style>
</head>

<body>
    <div id="box"></div>
    <script>
        
    box.addEventListener('click',function()  {alert(1)},false);
    
    </script>
</body>
</html>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

这只是浏览器觉得你运行这个点击事件用的时间太长了,所以给个警告,应该是 alert 阻塞渲染导致的,可以忽略。
alert 换成 console.log 应该就不会报了。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...