★・・・Screenオブジェクト |
モニタの有効領域のサイズ、または端の座標を参照します。
availTopプロパティ
モニタにおける有効領域の端の座標を参照します。availTopプロパティは有効な上端のY座標を返します。
<head>
<title>JavaScript Sample</title>
<script type=”text/javascript”>
function formInitialize() {
// モニタの有効な上端のY座標を表示
document.getElementById(“avail”).value = screen.availTop;
}
</script>
</head>
<body onload=”formInitialize()”>
<p><b>モニタの有効領域が表示されます。</b></p>
<form action=””>
<p>モニタの有効な上端のY座標は<input type=”text” id=”avail” size=”8″ />です。</p>
</form>
</body>
</html>