screen对象
有以下的常用的属性
availHeight
availWidth
height
width
例子:
<body>
<script>
document.write("可用高度:"+screen.availHeight+";可用宽度:"+screen.availWidth);
document.write("<br/>");
document.write("实际的高度:"+screen.height+";实际的宽度:"+screen.width);
</script>
</body>
时间: 2025-01-14 04:47:45