HTML DOM colorDepth 屬性
定義和用法
colorDepth 屬性返回目標(biāo)設(shè)備或緩沖器上的調(diào)色板的比特深度。
語法
screen.colorDepth
實例
<html> <body> <script type="text/javascript"> document.write("<p>Color Depth: ") document.write(screen.colorDepth + "</p>") </script> </body> </html>