Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. var total=0;
  5. function sumar(valor) {
  6. total += valor;
  7. document.formulario.total.value=total;
  8. }
  9. function restar(valor) {
  10. total-=valor;
  11. document.formulario.total.value=total;
  12. }
  13. </script>
  14. </head>
  15. <body>
  16. <form name_1=formulario1>
  17. <input name_1="checkbox" type="checkbox" onClick="if (this.checked) sumar(1); else restar(1)" value="checkbox">$1<br>
  18. <input name_1="checkbox" type="checkbox" onClick="if (this.checked) sumar(2); else restar(2)" value="checkbox">$2<br>
  19. <input type="text" name_1="total" value="0">
  20. </form>
  21. <form name=formulario2>
  22. <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(1); else restar(1)" value="checkbox">$1<br>
  23. <input name="checkbox" type="checkbox" onClick="if (this.checked) sumar(2); else restar(2)" value="checkbox">$2<br>
  24. <input type="text" name="total" value="0">
  25. </form>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement