javascript設定元素點擊事件的方法:1、建立一個HTML範例檔案;2、新增script標籤;3、透過getElementById取得button元素;4、透過「btn.onclick」方法設定元素點擊事件即可。
本文操作環境:windows7系統、javascript1.8.5版、DELL G3電腦
javascript怎麼設定元素點擊事件?
很簡單,看下面的程式碼:
<!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> <script> window.onload=function(){ var btn = document.getElementById("btn"); btn.onclick=function(){ alert("这就是点击事件~"); } } </script> </head> <body> <button id="btn">点击一下吧</button> </body> </html>
推薦學習:《javascript基礎教學》
以上是javascript怎麼設定元素點擊事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!