Advertisement
Guest User

Untitled

a guest
May 21st, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Тег IMG</title>
  6. </head>
  7. <body>
  8. <p id='test_p'></p>
  9. <a id='test_a' href="cat.html">Кошки</a>
  10. <script>
  11. document.getElementById('test_a').addEventListener("click",function() {
  12. href = document.getElementById('test_a').getAttribute('href');
  13. a = document.getElementById('test_a');
  14. a.innerHTML += '('+href+')';
  15. })
  16. </script>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement