当前位置:网站首页>[summary of two registration methods]
[summary of two registration methods]
2022-07-05 03:33:00 【renrenrenrenqq】
Summary of two registration methods
on Registration method at the beginning
Register multiple ways for the same event , The bottom will cover the top , Only one , Have uniqueness
Commonly used onclick Click on an object ,onmousemove Mouse moved ,onkeydown A key on a keyboard is pressed
<!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>Document</title>
</head>
<body>
<button id="annniu">button</button>
</body>
<script>
var button=document.querySelector('#annniu')
button.onclick=function(){
console.dir('1')
}
button.onclick=function(){
console.dir('2')
}
</script>
</html>
Express only 2
2. Monitoring mode
Register multiple ways for the same event , They don't cover each other
utilize addEventListener(type( Event type , No addition on),listener( Event handler ),useCapture( Boolean value , It can be omitted , It is often used to judge bubble and capture ));
true capture ,false Bubbling
<!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>Document</title>
</head>
<body>
<button id="annniu">button</button>
</body>
<script>
var button=document.querySelector('#annniu')
button.addEventListener('click',function()
{
console.dir('1')
})
button.addEventListener('click',function()
{
console.dir('2')
})
</script>
</html>
expression 1 and 2
边栏推荐
- Single box check box
- [daily problem insight] Li Kou - the 280th weekly match (I really didn't know it could be so simple to solve other people's problems)
- Pdf things
- Difference between MotionEvent. getRawX and MotionEvent. getX
- Performance of calling delegates vs methods
- Nmap使用手册学习记录
- Blue Bridge Cup single chip microcomputer -- PWM pulse width modulation
- Flume配置4——自定义MYSQLSource
- Unity implements the code of the attacked white flash (including shader)
- Why do some programmers change careers before they are 30?
猜你喜欢
el-select,el-option下拉选择框
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
Pat class a 1160 forever (class B 1104 forever)
Machine learning experiment report 1 - linear model, decision tree, neural network part
Why do some programmers change careers before they are 30?
1.五层网络模型
SQL injection exercise -- sqli Labs
Linux安装Redis
Tiny series rendering tutorial
Kbp206-asemi rectifier bridge kbp206
随机推荐
Tencent cloud, realize image upload
Blue Bridge Cup single chip microcomputer -- PWM pulse width modulation
Azkaban installation and deployment
ICSI213/IECE213 Data Structures
Huawei MPLS experiment
Machine learning experiment report 1 - linear model, decision tree, neural network part
问下,这个ADB mysql支持sqlserver吗?
How can we truncate the float64 type to a specific precision- How can we truncate float64 type to a particular precision?
Design and practice of kubernetes cluster and application monitoring scheme
Single box check box
Pat class a 1162 postfix expression
Six stone programming: advantages of automated testing
LeetCode 234. Palindrome linked list
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
Basic authorization command for Curl
The perfect car for successful people: BMW X7! Superior performance, excellent comfort and safety
040. (2.9) relieved
How to learn to get the embedding matrix e # yyds dry goods inventory #
[105] Baidu brain map - Online mind mapping tool
为什么腾讯阿里等互联网大厂诞生的好产品越来越少?