日期:2014-05-16 浏览次数:20519 次
<!DOCTYPE HTML> <html> <head> <meta charset="gb2312" /> <title></title> <style> </style> </head> <body> <a href="http://www.baidu.com" target="_blank">百度跳转</a> <a href="http://www.baidu.com" target="_blank" id="test">阻止默认事件</a> <script> document.getElementById('test').onclick = function(e){ e = e || window.event; if (e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; } } </script> </body> </html>
------解决方案--------------------
楼主 搜下 history.pushState
没实验过。。。