大家好,并提前感谢您的帮助。这是我的情况:
我有Phonegap 0.9.5设置,我正在Eclipse中创建一个应用程序。我的所有设置都很好,并且在我的Phonegap应用程序的app assets / www / index.html中:
<iframe id='downloader' frameborder='0' style='width:100%' src='http://www.myste.com/mobile/index.html'></iframe>
http://www.myste.com/mobile/index.html有这个按钮:
<input style="position:relative;top:200px;z-index:5;" type="button" onclick="alert(parent.location.href)" value="DOES MOM EXIST?" />';
但由于某种原因,我收到了“未定义”。我的最终目标是让iframe中的按钮调用父级中的函数(assets / www / index.html):
onclick="parent.somefunction();"
有人可以帮助我吗?
答案 0 :(得分:0)
应该是window.top.location.href
?