Detect if page is loaded inside WKWebView in JavaScript(检测页面是否在 JavaScript 中的 WKWebView 中加载)
问题描述
如何使用 javascript 可靠地检测页面是否加载到 WKWebView 中?我希望能够检测到这些场景:
How can I reliably detect using javascript that a page is loaded inside a WKWebView? I'd like to be able to detect these scenarios:
- iOS 和WKWebView
- iOS 和野生动物园
- 不是 iOS
这里有一个关于 UIWebView 的类似问题.但它已经很老了,我不确定 WKWebView 是否仍然适用.
There is a similar question about UIWebView here. But it's quite old and I'm not sure if same still applies to WKWebView.
推荐答案
您可以检查 WKWebKit 用于从 JavaScript 接收消息的 window.webkit.messageHandlers
是否存在.如果它存在,那么您就在 WKWebView
中.
You can check for the existence of window.webkit.messageHandlers
which WKWebKit uses to receive messages from JavaScript. If it exists, you're inside a WKWebView
.
结合简单的用户代理检查应该可以解决问题:
That combined with a simple user agent check should do the trick:
var iOS = (navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false);
var isWKWebView = false;
if (window.webkit && window.webkit.messageHandlers) {
isWKWebView = true;
}
这篇关于检测页面是否在 JavaScript 中的 WKWebView 中加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检测页面是否在 JavaScript 中的 WKWebView 中加载
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01