Skip to content

JavaScript 判断是否为 iPad

Published: at 04:17 PMSuggest Changes

网上找到原因了:StackOverFlow

iPadPro reports navigator.platform the browser as ‘MacIntel’, but that is the same as other platforms.

解决方法

判断是不是多点触控 navigator.maxTouchPoints

function isIOS() {
  if (/iPad|iPhone|iPod/.test(navigator.platform)) {
    return true;
  } else {
    return (
      navigator.maxTouchPoints &&
      navigator.maxTouchPoints > 2 &&
      /MacIntel/.test(navigator.platform)
    );
  }
}

function isIpadOS() {
  return (
    navigator.maxTouchPoints &&
    navigator.maxTouchPoints > 2 &&
    /MacIntel/.test(navigator.platform)
  );
}

Previous Post
CSS 选择器详解:`[id~=footnotes]` 失效原因分析
Next Post
ESLint 配置允许使用 any