程式碼如上,在IE下,特別是在IE6中,點擊超連結之後,瀏覽器並沒有發生跳轉行為。
原因可能是因為href中的javascript:void(0)阻止的事件行為,解決方法如下:
1.在onclick事件中加return false來阻止冒泡:
$("a").click(function(){function(){function(){function()
window.location.href = "xxx.html";
reutrn false;
})
2.延遲100毫秒
程式碼如下:
$("a").click(function(){
setTimeout(function(){
window.location.href = "xxx.html";
},100);
})