原生h5 移动端浏览器 判断用户所处的网络状态 (WIFI,移动流量) 很鸡肋 在 苹果上不支持
程序员文章站
2024-03-15 23:13:30
...
// 兼容性写法
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection || { effectiveType: undefined };
console.log(connection.effectiveType)
alert(connection.effectiveType)
兼容情况
真机测试
本来移动端浏览器 就不应该支持这种用户 涉及用户的隐私
最好的就是 进入页面提示 用户 切换到那种网络状态下 不就行了嘛 哈哈
关注我 持续更新前端知识