JS检测浏览器是否最大化

请帮忙把代码写出来,谢谢... 请帮忙把代码写出来,谢谢 展开
 我来答
xinjujiu
2014-08-21 · TA获得超过193个赞
知道答主
回答量:39
采纳率:0%
帮助的人:45.7万
展开全部
function isFullScreen (){
    if(
        window.outerHeight === screen.availHeight
    ){
        if(
            window.outerWidth === screen.availWidth
        ){
            return true;// 全屏
        }
    }
    return false; // 不是全屏
};

    

唯爱孤单旭
2014-08-21 · 超过50用户采纳过TA的回答
知道小有建树答主
回答量:164
采纳率:0%
帮助的人:52.2万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://libs.useso.com/js/jquery/1.8.0/jquery-1.8.0.js"></script>
</head>

<body>
<input type="text" size="100" id="text" />
<input type="button" id="test" value="text" />
<script>
    $(function(){
        $("#test").bind("click",function(){
            var str = "桌面宽度:"+window.screen.width+",桌面高度:"    +window.screen.height+",浏览器宽度:"+document.body.clientWidth+",浏览器高度"+document.body.clientHeight;
            $("#text").val(str);
        })           
    })
</script>
</body>
</html>
追问
我都已经最大化了,还显示桌面宽度:1440,桌面高度:900,浏览器宽度:1293,浏览器高度24
任务栏也是有高度的吧
追答
我能想的就是用width判断他是否最大~ 高度没必要 你想做自适应啊?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式