如何修改 iOS 中 PhoneGap 的浏览器控件以具有菜单按钮?
我在 iOS 中有一个 PhoneGap 应用程序来显示 Web 应用程序。我想修改显示 Web 应用程序的浏览器控件,使其底部有几个按钮,用作“后退”、“前进”、“刷新”等。这可能吗?我需要使用插件吗?
I have a PhoneGap application in iOS to display a web app. I want to modify the browser control that is displaying the web app to have a few buttons at the bottom that function as "back" "forward" "refresh" etc. is this possible? Do I need to use a plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 html 来实现这些按钮,这对于 javascript 来说非常容易。由于它对性能不是至关重要的,因此没有必要使用本机代码执行此操作。
我不知道你到底想要什么插件,但我已经使用了这个 iOS ChildBrowser 插件,提供带有“后退”、“前进”和“刷新”按钮的弹出浏览器。浏览外部网页非常方便。
I suggest using html to implement those buttons, which is pretty easy with javascript. Since it's not performance-critical, doing this with native code is unnecessary.
I don't know any plugins for what exactly you want, but I have used the android version of this iOS ChildBrowser plugin which provides a pop-up browser with "back", "forward" and "refresh" buttons. It's quite convenient for browsing external web pages.