Để kích hoạt sự kiện nhấp chuột JavaScript, chúng ta hãy xem ví dụ về di chuột.
Ví dụ
Bản trình diễn trực tiếp
<!DOCTYPE html> <html> <body> <p>Hover over the button.</p> <form> <input type="button" id="test" value="Hover" onmouseover="display()" onclick="alert('click event')"> </form> <script> function display() { document.getElementById("test").click(); } </script> </body> </html>