最新的Web開發教程
 

Screen width Property

<屏幕對象

讓您的屏幕的總寬度:

var x = "Total Width: " + screen.width;

x的結果將是:

試一試»

更多"Try it Yourself"下面的例子。


定義和用法

寬度屬性返回用戶的屏幕的總寬度,以像素為單位。

提示:使用高度屬性來獲取用戶屏幕的總高度。


瀏覽器支持

屬性
width

句法

screen.width

技術細節

返回值: 一個數字,代表用戶的屏幕的總寬度,以像素為單位

例子

更多示例

在一個示例中,所有屏幕屬性:

var txt = "";
txt += "<p>Total width/height: " + screen.width + "*" + screen.height + "</p>";
txt += "<p>Available width/height: " + screen.availWidth + "*" + screen.availHeight + "</p>";
txt += "<p>Color depth: " + screen.colorDepth + "</p>";
txt += "<p>Color resolution: " + screen.pixelDepth + "</p>";
試一試»

<屏幕對象