① 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);
})