js 判斷 用戶瀏覽器所在平臺

<script type="text/javascript">
          	function analysisPlatform()
          	{
	          	//平臺、設備和操做系統
		        var system = {
		            win: false,
		            mac: false,
		            xll: false,
		            ipad:false
		        };
		        //檢測平臺
		        var p = navigator.platform;
		        system.win = p.indexOf("Win") == 0;
		        system.mac = p.indexOf("Mac") == 0;
		        system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
		        system.ipad = (navigator.userAgent.match(/iPad/i) != null)?true:false;
		        //跳轉語句,若是是手機訪問就自動跳轉到xx頁面
		        if (system.win || system.mac || system.xll||system.ipad) {
					window.location.href = "非手機端跳轉";
		        } else {
		            window.location.href = "手機跳轉";
		        }
          	}
          </script>
相關文章
相關標籤/搜索