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