window.location.href IE下跳转失效的解决方法_Javascript教程-查字典教程网
window.location.href IE下跳转失效的解决方法
window.location.href IE下跳转失效的解决方法
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:GoNext$("a").click(function(){window.location.href="xxx.html"...

复制代码 代码如下:

<a href="javascript:void(0)" >GoNext</a>

$("a").click(function(){

window.location.href = "xxx.html";

})

代码如上,在IE下,特别是在IE6中,点击超链接之后,浏览器并没有发生跳转行为。

原因可能是因为在href中的javascript:void(0)阻止的事件行为,解决方法如下:

1.在onclick事件中加return false来阻止冒泡:

复制代码 代码如下:

$("a").click(function(){

window.location.href = "xxx.html";

reutrn false;

})

2.延迟100毫秒

复制代码 代码如下:

$("a").click(function(){

setTimeout(function(){

window.location.href = "xxx.html";

},100);

})

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类