15_阻止事件默认行为.html 629 B

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