HTML DOM pixelDepth 屬性
定義和用法
pixelDepth 屬性返回顯示屏幕的顏色分辨率(比特每像素)。
語(yǔ)法
screen.pixelDepth
實(shí)例
<html>
<body>
<script type="text/javascript">
document.write("<p>Pixel Depth: ")
document.write(screen.pixelDepth + "</p>")
</script>
</body>
</html>