Advertisement
flomath

add

Feb 2nd, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <p id="zahl">0</p>
  6. <script type="text/javascript">
  7.     document.getElementById("zahl").addEventListener("click",plusdrei);
  8.     function plusdrei(){
  9.     var input=prompt("Geben Sie eine Zahl ein", "");
  10.     e = parseInt(document.getElementById("zahl").value);
  11.     erg = e+parseInt(input);
  12.       document.getElementById("zahl").innerHTML = erg;
  13. }
  14. </script>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement