如何通过 iOS (iPhone) 代码在网页内按下带有 java 脚本事件的按钮?

发布于 2024-12-06 13:35:37 字数 121 浏览 1 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骄兵必败 2024-12-13 13:35:37

您可以使用:

document.getElementById('id-of-button').click();

这将在按钮上执行单击事件。

编辑:要在 UIWebView 中运行 JavaScript,请使用 stringByEvaluatingJavaScript: 方法。例如:

[webView stringByEvaluatingJavaScript:@"document.getElementById('id-of-button').click();"];

You can use:

document.getElementById('id-of-button').click();

This will perform a click event on the button.

EDIT: to run JavaScript in a UIWebView use the stringByEvaluatingJavaScript: method. Eg:

[webView stringByEvaluatingJavaScript:@"document.getElementById('id-of-button').click();"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文