preventDefault方法就是可以阻止它的默认行为的发生而发生其他的事情。
JS阻止链接跳转
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | function stopDefault(e) { if (e && e.preventDefault) { //如果是FF下执行这个 e.preventDefault(); } else { window.event.returnValue = false ; //如果是IE下执行这个 } return false ; } </script> <script type= "text/javascript" > var test = document.getElementByIdx_x( 'test' ); test.onclick = function (e) { alert( 'URL:' + this .href + ', 不会跳转' ); stopDefault(e); } |
此时点击链接,不会打开url,只弹出一个对话框。