链接到index.html Javascript / Phonegap

时间:2012-10-29 11:48:30

标签: javascript xcode cordova

我使用http://zsprawl.com/iOS/2012/05/navigation-bar-with-nativecontrols-in-cordova/和最新版本的Cordova和Xcode。我在Javascript中找到了这个函数,请查看下面的内容。

如何链接do index.html?

function onLeftNavButton() {
    window.location("index.html");
}

window.location("file://www/index.html");window.location("file://index.html"); window.location("./index.html");不要工作,如果我window.loction.href也不工作。

如果我做了alert("123");它工作正常!

1 个答案:

答案 0 :(得分:1)

我认为是

windows.location.href = "index.html";

干杯。