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>
推薦:《2021年js面試題目及答案(大匯總) 》
以上是Javascript加入事件的三種方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!