javascript怎么获取屏幕大小

 我来答
桃子的幸福on
2016-07-23 · 知道合伙人互联网行家
桃子的幸福on
知道合伙人互联网行家
采纳数:1044 获赞数:2229
在校计算机专业学生

向TA提问 私信TA
展开全部

一个是javascript的window.screen,还有document.body对象。

下面举个实际例子来说明:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>标题一</title>
</head>
<body>
<script>
    var width1=window.screen.width;
    var height1=window.screen.height;
    var width2=window.screen.availWidth;
    var height2=window.screen.availHeight;
    var width3=document.body.clientWidth||document.documentElement.clientWidth;
    var height3=document.body.clientHeight||document.documentElement.clientHeight;
    var width4=document.body.offsetWidth||document.documentElement.offsetWidth;
    var height4=document.documentElement.offsetHeight;
    document.write("屏幕的宽度高度:"+width1+"*"+height1+"<br>除去了系统状态栏的宽度和高度:"+width2+"*"+height2+"<br>出去了滚动条,系统状态栏,浏览器菜单栏的页面高度和宽度:"+width3+"*"+height3+"<br>")
</script>
</body>
</html>

匿名用户
2016-07-19
展开全部
1
2
3
4
5
6
7
8
9

<script>

window.onload = function(){
// 获取屏幕高度 document.documentElement.clientHeight
console.log(document.documentElement.clientHeight);
// 获取屏幕宽度 document.documentElement.clientWidth
console.log(document.documentElement.clientWidth);
}
</script>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式