且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android的重定向不工作

更新时间:2021-07-21 07:50:00

Android支持 document.location 没有的href 属性

Android supports document.location without the href property

尝试使用:

function redirect(uri) {
  if(navigator.userAgent.match(/Android/i)) 
    document.location=uri;      
  else
    window.location.replace(uri);
}

欲了解更多信息请点击这里