Phonegap android重定向到三星galaxy不工作的url

phonegap android redirect to url not working on samsung galaxy

本文关键字:工作 url galaxy 三星 android 重定向 Phonegap      更新时间:2023-09-26

我在使用三星galaxy S3手机时遇到了问题。基本上,我正在尝试设置一个cookie,并使用javascript/jquery重定向到不同的页面。

不幸的是,在三星手机上,它只能返回到主页面。

$.cookie('uname', identifier, {expires:7});
window.location="secure.html";

这段代码适用于其他品牌的安卓手机——三星手机有什么"特别的"吗?

尝试使用window.location.replace("secure.html")来更改页面。