2

在我的 phonegap 应用程序的 Windows 8 版本中,我试图使用应用程序栏切换到某些页面。下面的代码不会形成一个有效的 URI 来导航。如果有人有解决方法或使此特定代码工作的方法,将不胜感激。

private void ApplicationBarIconButton_Click(object sender, EventArgs e)
{
    try
    {
        if (button.Text == "Logout")
        {
        IsolatedStorageSettings.ApplicationSettings.Remove("UserName");
        IsolatedStorageSettings.ApplicationSettings.Remove("Password");
        NavigationService.Navigate(new Uri("/www/index.html", UriKind.Absolute)); 
        }

    }
    catch (Exception ex)
    {
    string esfjdlkfj; //placeholder
    }

}
4

1 回答 1

1

如果正在使用 jquery mobile,您可以使用调用来调用

$.mobile.changePage("index.html", {transition : "none" });
于 2014-01-07T20:45:17.797 回答