Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Formatowanie akapitów</title>
  5. <style>
  6. .czerwony{color:red;}
  7. .zielony{color:green;}
  8.  
  9. </style>
  10. </head>
  11. <body>
  12. <h1>Wstawianie i formatowanie akapitów</h1>
  13. <input type="button" value="Nowy" id="b1">
  14. <input type="button" value="Formatuj na czerwono" id="b2">
  15. <input type="button" value="Formatuj na zielono" id="b3">
  16. <input type="button" value="Kasuj akapit" id="b4">
  17.  
  18. <div id="kontener">
  19.  
  20. </div>
  21. <script>
  22. b1.addEventListener ('click', e=>{
  23. let akapit=document.createElement('p');
  24.  
  25. kontener.appendChild(akapit);
  26. akapit.innerHTML=Math.random();
  27.  
  28. b2.addEventListener ('click', e=>{
  29. let akapity=document.getElementsTagName('p');
  30. let dl=akapity.length;
  31.  
  32. for)(let i=0;i<dl;i++)
  33. {
  34.  
  35. }
  36.  
  37. });
  38. </script>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement