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

Javascript添加事件的三种方式

autoload
autoload 原创
2021-04-08 14:56:38 2450浏览

2021040814411728344.jpg

    javascript添加事件的方式有很多,本文主要列举三种添加事件的方式,包括添加到元素事件属性上、添加到javascript脚本中、事件监听器。

1.添加到元素事件属性上

<!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="alert(&#39;我被调用了&#39;)">按钮1</button>
</body>
</html>

2.添加到JS脚本中

<!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("你好");
           }
    </script>
</body>
</html>

3.事件监听器

<!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="">按钮3</button>
    <script>
          const btn3=document.querySelector("button");
           btn3.addEventListener("click",function(){
               alert("被调用了");
           });   
    </script>
</body>
</html>

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

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