12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <a id="a1" href="https://www.baidu.com">跳转</a>
- <script>
- var a1 = document.getElementById('a1')
- a1.onclick = function(e){
- console.log(123)
- //阻止事件的默认行为 仅W3C
- // e.preventDefault()
- //设置false表示取消默认行为
- e.returnValue = false //适配于ie浏览器
- }
- </script>
- </body>
- </html>
|