Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.  
  5.         </title>
  6.     </head>
  7.     <body>
  8.         <input type ="button" id="clickme" value="Click Me"/>
  9.     </body>
  10.     <script language ="javascript">
  11.    
  12.     // lay element co id = "clickme" luu vao bien button
  13.     var button = document.getElementById('clickme');
  14.     // khi click vao element chua trong button thi thuc hien
  15.     // trong ham function thong bao hello word
  16.     button.addEventListener('click',function(){
  17.         alert('Hello world');
  18.     });
  19.  
  20.  
  21.  
  22.  
  23.     </script>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement