拦截html按钮点击

发布于 2024-10-06 23:07:48 字数 134 浏览 1 评论 0原文

当用户点击 html 按钮时是否有可能拦截?我有一个 webviewclient,它加载带有两个按钮的登录页面。允许和拒绝。我希望您在按下拒绝按钮时进行拦截。 (拒绝和允许具有相同的 basUrl 和 js 执行正确的重定向)。

提前致谢

is there any possibility to intercept when a user clicks on a html button? I ve an webviewclient that load a login page with two buttons. Allow and Deny. I would you like to intercept when the deny button is pressed. (Deny and allow have the same basUrl and a js do the correct redirect).

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

以酷 2024-10-13 23:07:48

您可能不会收到对 shouldOverrideUrlLoading() 的回调,因为只有在用户触发导航时才会调用该回调 - 如果您使用 jquery/javascript 或某种其他类型的重定向,则不会调用它。

如果您可以控制网页,则可以添加 JavaScriptInterface 来回调您的 Android 应用程序并按照您喜欢的方式进行处理:http://developer.android.com/guide/webapps/webview.html#BindingJavaScript

使用 JSI,您只需在应用程序中注册一个函数,然后在页面的 javascript。

如果您无法控制网站,如果您熟悉网页的结构/DOM,您仍然可以自己注入 javascript。

You are probably not getting a callback to shouldOverrideUrlLoading() because that is only called if the user triggers the navigation - if you use jquery/javascript or some other kind of redirect, then it will not be called.

If you are in control of the web page, you can add can a JavaScriptInterface to call back to your Android app an handle it however you like here: http://developer.android.com/guide/webapps/webview.html#BindingJavaScript

With JSI you simply register a function in your app and then call it in the page's javascript.

If you are not in control of the website, you can still inject the javascript yourself if you are familiar with the structure/DOM of the web page.

仅冇旳回忆 2024-10-13 23:07:48

听起来像是实现 WebViewClient.shouldOverrideUrlLoading(),当然可以吗?

Sounds like a case for implementing WebViewClient.shouldOverrideUrlLoading(), surely?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文