我使用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");
它工作正常!
答案 0 :(得分:1)
我认为是
windows.location.href = "index.html";
干杯。