Skip to content

user-agent 作用:获取设备类型

当前字数: 0 字 阅读时长: 0 分钟

js
if (/Android|iPhone|Windows Phone/i.test(navigator.userAgent)) {
  document.body.classList.add("mobile-device");
}

Released under the MIT License.