test1.html 330 B

12345678910111213141516
  1. <html>
  2. <head>
  3. <script language="javascript">
  4. function button_onclick () {
  5. el = document.getElementById ('text');
  6. el.innerHTML = "you clicked me!";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11. <span id="text">you haven't clicked me...</span><br/>
  12. <button id="button" onClick="javascript:button_onclick()">Click me!</button>
  13. </body>
  14. </html>