判断当前是移动端还是pc端
判断当前是移动端还是pc端
// 判断当前是移动端还是pc端
export function judgeIsPhoneUtile() {
// 移动端
if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) return true
return false
}Last updated
// 判断当前是移动端还是pc端
export function judgeIsPhoneUtile() {
// 移动端
if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) return true
return false
}Last updated