navigator.platform属性可能的值有哪些

  • Post author:
  • Post category:其他



可能的值如下:(PS:注意大小写)


HP-UX

Linux i686

Linux armv7l

Mac68K

MacPPC

MacIntel

SunOS

Win16

Win32

WinCE

iPhone

iPod

iPad

Android

BlackBerry

Opera


写过的一个判断,配合v-if,使PC端和移动端渲染不同的界面

   isMobile() {
      if (
        navigator.platform.match(
          "iPhone" || "iPod" || "iPad" || "Andriod" || "ios"
        )
      ) {
        this.Mobile = true;
        // console.log(navigator.platform);  Win32
      } else {
        this.Mobile = false;
        console.log("isNot");
      }
    },



版权声明:本文为weixin_44229267原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。