欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM platform 屬性

定義和用法

platform 屬性是一個只讀的字符串,聲明了運(yùn)行瀏覽器的操作系統(tǒng)和(或)硬件平臺。

雖然該屬性沒有標(biāo)準(zhǔn)的值集合,但它有些常用值,比如 "Win32"、"MacPPC" 以及 "Linuxi586",等等。

語法

navigator.platform

實(shí)例

<html>

<body>
<script type="text/javascript">
document.write("<p>Platform: ")
document.write(navigator.platform + "</p>")
</script>
</body>

</html>