phonegap android重定向到url不在三星galaxy上工作

时间:2013-04-03 14:05:19

标签: javascript android cordova jquery-mobile samsung-mobile

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

不幸的是,在三星手机上,它只是恢复到主页面。

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

此代码适用于Android手机的其他品牌 - samsungs有什么“特别”吗?

1 个答案:

答案 0 :(得分:0)

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