isMobile: function () {
const ua = navigator.userAgent.toLowerCase();
if (ua.match(/mobile/)) {
return true;
}
return false;
},
网页适配,判断浏览当前网页的设备是pc还是Mobile
最新推荐文章于 2024-03-28 17:14:00 发布
isMobile: function () {
const ua = navigator.userAgent.toLowerCase();
if (ua.match(/mobile/)) {
return true;
}
return false;
},