14_阻止事件默认行为.html 551 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <a href="http://www.baidu.com" id="a1">跳转</a>
  11. <script>
  12. var a1 = document.getElementById('a1')
  13. a1.onclick = function(e){
  14. console.log(123)
  15. //阻止事件默认行为 仅w3c
  16. e.preventDefault()
  17. // 适配于ie浏览器
  18. e.returnValue = false
  19. }
  20. </script>
  21. </body>
  22. </html>