Để thêm trình xử lý sự kiện vào một phần tử, hãy sử dụng JavaScript addEventListener () phương pháp. Bạn có thể thử chạy đoạn mã sau để thêm trình xử lý sự kiện -
Ví dụ
<!DOCTYPE html> <html> <body> <p>Click the below button.</p> <button id = "btnid">Click me</button> <p id = "pid"></p> <script> document.getElementById("btnid").addEventListener("click", displayEvent); function displayEvent() { document.getElementById("pid").innerHTML = Date(); } </script> </body> </html>