window.screen.widthは、スクリーンの幅を返すプロパティ。
構文
<script type="text/javascript">
window.screen.width;
</script>
window.screen.width;
</script>
<script>~</script>
内であれば、window.
は、下記のように省略可能。
<script type="text/javascript">
screen.width;
</script>
screen.width;
</script>
戻り値
スクリーンの幅。ピクセル単位。
サンプル
スクリーンの幅:
サンプルの動作について
「スクリーンの幅: 」の右横に、スクリーンの幅を表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
window.onload = function () {
document.getElementById( "sampleOutput" ).innerHTML = window.screen.width + 'px';
}
</script>
window.onload = function () {
document.getElementById( "sampleOutput" ).innerHTML = window.screen.width + 'px';
}
</script>
HTML
<p>スクリーンの幅: <span id="sampleOutput"></span></p>