Javascript添加事件的三种方式
时间:2021-04-28
来源:互联网
今天PHP爱好者为您带来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('我被调用了')">按钮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>
以上就是Javascript添加事件的三种方式的详细内容,更多请关注php爱好者其它相关文章!
-
VMware Workstation Pro 17官网下载安装教程 时间:2025-05-02
-
Node.js压缩包安装及环境配置 时间:2025-05-02
-
Easyconnect官网下载安装使用教程 时间:2025-05-02
-
Python中Pandas库详细教程 时间:2025-05-02
-
XPath定位方法详解(基本语法、应用场景、常见问题) 时间:2025-05-02
-
什么是时间复杂度 时间复杂度怎么计算 时间复杂度和空间复杂度的区别 时间:2025-05-02
今日更新
-
JavaScript常用属性方法有哪些
阅读:18
-
CSS如何设置html table表格边框样式
阅读:18
-
javascript中怎么使用item方法
阅读:18
-
javascript继承有哪两种形式
阅读:18
-
怎么使用javascript
阅读:18
-
javascript怎么移除属性
阅读:18
-
css样式not怎么设置
阅读:18
-
如何在javascript中绘制方块
阅读:18
-
javascript如何设置只能输入数字
阅读:18
-
用javascript实现斐波那契数列
阅读:18