我正在尝试使用js在phonegap中进行简单的页面重定向。这个代码是从iframe中调用的,所以我在做:
window.parent.location("event_select.html");
但这不起作用,我收到错误:
未捕获的typerror:对象的属性位置(DOM窗口)不是函数。
我做错了什么?
答案 0 :(得分:2)
位置不是一个功能它是一个对象。我相信你想做一个:
window.parent.location.href="event_select.html";