HTML DOM platform 屬性
定義和用法
platform 屬性是一個只讀的字符串,聲明了運行瀏覽器的操作系統(tǒng)和(或)硬件平臺。
雖然該屬性沒有標準的值集合,但它有些常用值,比如 "Win32"、"MacPPC" 以及 "Linuxi586",等等。
語法
navigator.platform
實例
<html>
<body>
<script type="text/javascript">
document.write("<p>Platform: ")
document.write(navigator.platform
+ "</p>")
</script>
</body>
</html>