CSS > 新さっぽろ60+One

JavaScript

6.オブジェクト<29p>


<html>
<head>
<title>★☆★☆ブラウザ情報★☆★☆</title>
</head>
<body>
<script language="JavaScript">
<!-- document.write("<h3>あなたの使用しているブラウザ情報は</h3>");
document.write("コード名:",navigator.appCodeName);
document.write("<BR>");
document.write("ブラウザ名: ",navigator.appName);
document.write("<BR>");
document.write("バージョン: ",navigator.appVersion);
document.write("<BR>");
document.write("言語: ",navigator.language);
document.write("<BR>");
document.write("MIMEタイフ: ",navigator.mimeTypes);
document.write("<BR>");
document.write("フラグイン: ",navigator.plugins);
document.write("<BR>");
document.write("ユーザーエージェント: ",navigator.userAgent);
document.write("<BR>");
document.write("<h3>ディスプレイのサイズを取得します。</h3>");
document.write("<h2>スクリーンの幅(pixels): ",screen.width);
document.write("<BR>");
document.write("スクリーンの高さ(pixels): ",screen.height);
document.write("<BR>");
document.write("使用可能カラー数(bitカラー): ",screen.colorDepth);
document.write("</h2>");
//-->
</script>
</body>
</html>