Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <----- BODY ----->
  2.  
  3. <button id="start" onclick="start_Int()">Start</button>
  4. <button id="ende" onclick="stop_Int()">Ende</button>
  5. <div style="display:flex;" id="count"></div>
  6.  
  7. <----- SCRIPT ----->
  8.  
  9. var intval="";
  10.  
  11. function start_Int(){
  12. intval=window.setInterval("start_count()",1000);
  13. }
  14.  
  15. function stop_Int(){
  16.  
  17.  
  18. window.clearInterval(intval)
  19.  
  20.  
  21. }
  22. function start_count(){
  23. var p = document.createElement('p');
  24. p.appendChild(document.createTextNode('+'));
  25.  
  26. document.getElementById('count').appendChild(p);
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement