siv*_*iva 2 javascript web-applications windows-phone-7 jquery-mobile cordova
我正在使用jquery mobile为Windows Phone 7开发一个Web应用程序.
我想导航到index.html到sample.html的页面.
function sample()
{
window.location.href = "Sample.html";
navigator.notification.alert("Navigated);
}
Run Code Online (Sandbox Code Playgroud)
它工作正常.
但是当使用"sample.html?id = 123123"添加查询字符串时
function sample()
{
window.location.href = "Sample.html?id=123123";
navigator.notification.alert("Navigated");
}
Run Code Online (Sandbox Code Playgroud)
此导航不起作用.
任何人都可以指导.欢迎使用另一种导航方法和查询字符串.