更多"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>";
试一试» <屏幕对象