① h5 頁面window.location.href android 不跳轉怎麼辦
原因可能是因為在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);
})