判断手机系统类型以及判断是否在微信环境

function navtype(){
	    	var typ='';
	    	var u = navigator.userAgent;
			if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机
				typ='a';
			} else if (u.indexOf('iPhone') > -1) {//苹果手机
				typ='i';
			} else if (u.indexOf('Windows Phone') > -1) {//winphone手机
				typ='w';
			}
			return typ;
}


/* 判断是否在微信环境 */
function is_weixn(){
    var ua = navigator.userAgent.toLowerCase();
    if(ua.match(/MicroMessenger/i)=="micromessenger") {
        return true;
    } else {
        return false;
    }
}








你可能感兴趣的:(前端)