JavaScript 擷取使用者用戶端作業系統版本

來源:互聯網
上載者:User

下午去了趟使用者現場,感覺此問題確實比較蹊蹺,最後發現出問題的電腦是WIN 2000的作業系統,感覺問題癥結可能就在此處,上網google一下,發現原來Media Player 11不支援Win2000系統,需要針對使用者作業系統版本判斷使用者下載播放器版本,讓Win2000使用者下載Media Player 9即可。
好了,問題原因找到了,解決問題就是很簡單的事情了。
下面主要說一下用JavaScript如何判斷使用者作業系統及版本。
關鍵區段:
window.navigator.userAgent :使用者瀏覽器、作業系統等資訊,對應HTML請求檔案頭User-Agent部分。
代碼部分:
<script language="javascript">
var ua = window.navigator.userAgent;
var osVersion = ua.split(";")[2];
var osV = osVersion.substr(osVersion.length-3,3);
switch(osV)
{
case "5.0":
document.write("Win2000");
break;
case "5.1":
document.write("WinXP");
break;
case "5.2":
document.write("Win2003");
break;
default:
document.write("Others");
break;
}
</script>
備忘:
window.navigator.userAgent幾種值:
1)WinXP+IE7:Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; CIBA; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
2)WinXP+FF3.0:Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)
3)Win2000+IE6:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
4)Win2000+FF3.1:Mozilla/5.0 (Windows; U; Windows NT 5.0; zh-CN; rv:1.9.1b2) Gecko/20081201 Firefox/3.1b2
以上值僅供參考,以便理解代碼,具體值請具體測試,盡信書不如無書,信別人說的不如信自己做的,呵呵
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.