Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Listener oraz funkcje strzałkowe</title>
  4. </head>
  5. <body>
  6.  
  7.  
  8.  
  9.  
  10. <input type="button" value="Wstaw nowy akapit" id="b1">
  11.  
  12.  
  13.  
  14.  
  15. <script>
  16. b1.addEventListener( 'click',function(){
  17.  
  18. let akapit=document.createElement('p');
  19.  
  20. akapit.innerHTML="Liczba akapitów"+akapit.length;
  21. document.body.appendChild(akapit)
  22.  
  23.  
  24.  
  25.  
  26.  
  27. } );
  28.  
  29.  
  30.  
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement