モニタ画面の色数を取得するには

<html>
<head>
<title>Sample</title>
</head>
<body>
モニタ画面の色深度をチェックします。<br><br>
<script type="text/javascript"><!--
cBit = screen.colorDepth;
if (cBit < 24)
{
document.write("フルカラーに設定しないと画像が綺麗に表示されません");
}else{
document.write("フルカラーなので問題ありません");
}
// --></script>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。