JavaScript使用addEventListener添加事件监听用法实例

本文实例讲述了JavaScript使用addEventListener添加事件监听用法。分享给大家供大家参考。具体实现方法如下:

<!DOCTYPE html> <html lang="en"> <head> <title>This text is the title of the document</title> <script> function showalert(){ alert('you clicked me!'); } function clickme(){ var pelement=document.getElementsByTagName('p')[0]; pelement.addEventListener('click', showalert, false); } window.addEventListener('load', clickme, false); </script> </head> <body> <div> <p>Click Me</p> <p>You Can't Click Me</p> </div> </body> </html>

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjxwfs.html