PhoneGap 或 Titanium 应用程序如何以编程方式调用 HTML5 页面上的 JavaScript?
假设我们在 PhoneGap 或 Titanium 应用程序中嵌入了一个 HTML5 网页。
应用程序可以调用 HTML5 网页中的 JavaScript 函数吗?
具体来说:应用程序收到Apple推送通知后,应用程序如何调用网页上的其中一个JS函数?
谢谢!
Assume we have a HTML5 web page embedded within a PhoneGap or Titanium app.
Can the app invoke JavaScript functions found within the HTML5 web page?
Specifically: after the app receives an Apple push notification, how can the app invoke one of the JS functions on the web page?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想问如何在 PhoneGap 中做到这一点吗?或者你想问 PhoneGap 是如何做到的?
PhoneGap 如何做到这一点:
http:// developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html
UIWebView
的stringByEvaluatingJavaScriptFromString:
方法。编辑:如何响应phonegap中的推送通知: 可以我们使用phonegap框架在iphone中推送通知吗?
Are you asking how to do it in PhoneGap? or are you asking how PhoneGap does it?
How PhoneGap does it:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html
UIWebView
'sstringByEvaluatingJavaScriptFromString:
method.Edit: how to respond to push notifications in phonegap: can we do push notification in iphone using phonegap framework?