编程崽

登录

一叶在编程苦海沉沦的扁舟之上,我是那只激情自射的崽

判断当前是移动端还是pc端

判断当前是移动端还是pc端

js 复制代码
// 判断当前是移动端还是pc端
export function judgeIsPhoneUtile() {
  // 移动端
  if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) return true
  return false
}
更新时间:2022/12/09 13:40:03