判断在那端运行

    var inBrowser = typeof window !== 'undefined'; // 是否在浏览器

    var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform; // 是否在微信端

    var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase(); // 是否在微信端

    var UA = inBrowser && window.navigator.userAgent.toLowerCase();  // 获取到浏览器导航信息

    var isIE = UA && /msie|trident/.test(UA);

    var isIE9 = UA && UA.indexOf('msie 9.0') > 0;

    var isEdge = UA && UA.indexOf('edge/') > 0;

    var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');

    var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');

    var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;

你可能感兴趣的:(判断在那端运行)