Advertisement
Guest User

Untitled

a guest
Jan 24th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE HTML>
  2.  
  3. <html>
  4.  
  5. <head>
  6.     <title> Test </title>
  7.     <meta charset="utf-8">
  8.  
  9. <SCRIPT>
  10. function Action(){
  11.     if (document.box.checked) alert('1');
  12.     else alert('0');
  13. }
  14.  
  15. </SCRIPT>
  16.  
  17. </head>
  18.  
  19. <body>
  20.  
  21. <input type="checkbox" id="box" name="box">
  22. <input type="button" name="knopka" onclick="alert(Action)" value="action!">
  23.  
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement