有什么方法或软件包可用来检测用户是否在WiFi上或正在使用蜂窝网络。
答案 0 :(得分:2)
您可能想尝试
const networkInformation = navigator.connection;
console.log(networkInformation);
有关更多信息,请尝试https://developer.mozilla.org/en-US/docs/Web/API/Navigator/connection
也值得一看Determine user's internet connection type via javascript or jquery。