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

title: 判断当前是移动端还是pc端 id: a9075628599e5a9e02ebf4dd824ade57 tags: [] date: 2000/01/01 00:00:00 updated: 2022/12/09 13:40:03 isPublic: true --#|[分隔]|#--

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

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

Last updated

Was this helpful?