在 iOS 中,如何从 Javascript(网络)检测设备是否通过 3G 或 Wifi 连接?
在 iOS 网络中,我想通过 Javascript 检测设备是通过 3G 还是 Wifi 连接?
在 Android 中,可以通过 navigator.connection.type
获取此信息。此信息在 iOS (iPad/iPhone) 上可用吗?
In iOS on the web, I would like to detect from Javascript whether the device is connected via 3G or Wifi?
In Android, this information is available via navigator.connection.type
. Is this information available on iOS (iPad/iPhone)?
See How do you detect 3G vs. Wifi connection on mobile safari?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 iOS 本身并不支持此功能。您必须使用像 PhoneGap 这样的框架来实现这一点。
You can't. iOS does not support this natively. You have to use a framework like PhoneGap to achieve this.
您可以从 javascript 调用本机 IOS 代码,在 Reachability API 中查找连接性,并将值返回给 Javascript。
You can call native IOS code from javascript that looks for connectivity in Reachability API,and return back the value to Javascript..