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 href="http://www.baidu.com" id="a1">跳转</a>
- <script>
- var a1 = document.getElementById('a1')
- a1.onclick = function(e){
- console.log(123)
- //阻止事件默认行为 仅w3c
- e.preventDefault()
- // 适配于ie浏览器
- e.returnValue = false
- }
- </script>
- </body>
- </html>
|