Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 iOS 中,Google 应用程序具有“在 Safari 中打开”选项,如下图所示。我想用这样的 JavaScript 来实现。可能吗?
我的 JavaScript 将在移动设备上的网络浏览器中运行。
据我所知,这是不可能的
从网站触发特定应用程序的唯一方法是通过其 URI 方案或通用链接。Safari 不支持传入的通用链接,并且它没有指定的 URI 方案(除了httpand https)。这意味着如果您当前所在的应用程序已经在处理URL(大概是这样http,https如果您首先使用它来显示页面,那么使用纯 javascript 就无能为力了。
http
https
这是您需要直接访问本机应用程序代码的地方。