14_阻止事件默认行为.html 598 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 id="a1" href="https://www.baidu.com">跳转</a>
  11. <script>
  12. var a1 = document.getElementById('a1')
  13. a1.onclick = function(e){
  14. console.log(123)
  15. //阻止事件的默认行为 仅W3C
  16. // e.preventDefault()
  17. //设置false表示取消默认行为
  18. e.returnValue = false //适配于ie浏览器
  19. }
  20. </script>
  21. </body>
  22. </html>