如何通过 iOS (iPhone) 代码在网页内按下带有 java 脚本事件的按钮?
我正在为 iOS (iPhone) 编写一个应用程序。
如何在网页内按下带有java脚本事件的按钮?我需要编写一段代码来按下这个按钮。然后该事件将被执行。我会得到它的工作成果。
非常感谢您的帮助!
I am writing an application for iOS (iPhone).
How to press a button with java-script event inside a web-page? I need to write a code to press this button. Then the event will be executed. And I'll take result of it's work.
Thanks a lot for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
这将在按钮上执行单击事件。
编辑:要在 UIWebView 中运行 JavaScript,请使用 stringByEvaluatingJavaScript: 方法。例如:
You can use:
This will perform a click event on the button.
EDIT: to run JavaScript in a UIWebView use the
stringByEvaluatingJavaScript:
method. Eg: