Advertisement
kolya5544

Untitled

Oct 10th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Первый пример: (Картинка, переход на сайт при нажатии на неё без JS)
  2. <a href="https://google.com">
  3. <img border="0" alt="Google Test" src="google.png" width="100" height="100">
  4. </a>
  5.  
  6. Второй пример (Присоеденение JS скрипта с переходом на сайт при нажатии на картинку без A тега):
  7. /js/main.js :
  8. var images = document.getElementsByTagName("img");
  9. for(var i = 0; i < images.length; i++) {
  10. var image = images[i];
  11. image.onclick = function(event) {
  12. window.location.href = "http://google.com/";
  13. };
  14. }
  15. /index.html:
  16. <html>
  17. <head>
  18. <script type="text/javascript" src="/js/main.js"></script>
  19. </head>
  20. <body>
  21. <img border="0" alt="Google Test" src="google.png" width="100" height="100">
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement