index.html 807 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>Другой тайтл</title>
  7. <style>
  8. </style>
  9. </head>
  10. <body>
  11. <div id ='container'>
  12. <button id='button1'>Button</button>
  13. <button id='button2'>Button</button>
  14. <button id='button3'>Button</button>
  15. <button id='button4'>Button</button>
  16. </div>
  17. <script>
  18. function clickCounter(el){
  19. let counter 0;
  20. el.onclick = () => el.innerText = counter++
  21. }
  22. clickCounter(button1)
  23. clickCounter(button2)
  24. clickCounter(button3)
  25. clickCounter(button4)
  26. </script>
  27. </body>
  28. </html>