Advertisement
rdsedmundo

-noob

Sep 6th, 2011
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.39 KB | None | 0 0
  1. <html>
  2. <head><title>Sou foda \me</title>
  3. <script type='text/javascript'>
  4. function soma()
  5. {
  6. var n1 = document.getElementById('num1').value;
  7. var n2 = document.getElementById('num2').value;
  8. alert(n1+n2);
  9. }
  10. </script></head>
  11. <body>
  12. <input type='button' value='Clique Aqui' onclick='soma()'>
  13. <input type='text' id='num1' value='0'>
  14. <input type='text' id='num2' value='0'>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement