PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

Javascript中添加事件到脚本被覆盖

autoload
autoload 原创
2021-04-08 15:35:52 1331浏览

2021040815150612067.jpg

问题:添加到脚本中被覆盖?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>php.cn</title>
</head>
<body>
    <button onclick="">按钮2</button>
    <script>
           const btn2=document.querySelector("button");
           btn2.onclick=function(){
               alert("你好");
           }
           btn2.onclick=function(){  //这个会覆盖上面的onclick
               alert("我也很好");
           }
    </script>
</body>
</html>

 解决方法:

 1. 将二者合并在一起

 <script>
           const btn2=document.querySelector("button");
           btn2.onclick=function(){
               alert("你好");
                alert("我也很好");
           }
    </script>

2.添加事件监听器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>php.cn</title>
</head>
<body>
    <button>按钮2</button>
    <script>     
         const btn1=document.querySelector("button");
           console.log(btn1);
           btn1.addEventListener("click",()=>alert("你好"));
           btn1.addEventListener("click",function(){
               alert("我也很好")
           });
    </script>
</body>
</html>

推荐:《2021年js面试题及答案(大汇总)

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。