這篇文章主要介紹了window.location.href IE下跳轉失效的解決方法,需要的朋友可以參考下
代碼如下: <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); })