-2

我找了这个,我发现的只是得到窗口的高度。

有没有办法只获得浏览器屏幕的高度?

编辑:

抱歉英语不好,我是西班牙人。

这就是我要找的: 在此处输入图像描述

蓝色+红色是窗口的高度,我只想得到红色部分的高度。

4

3 回答 3

0

试试下面

<!doctype html>
<html>
<head>
<title> new document </title>
</head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<body>
<script>
    var screenht = screen.height; //This gets the Monitors/Screens height
    var docht = $(document).height(); //This gets the view port height
    var toolbarht = screenht - docht; //You get the height occupied by browser toolbar
    alert('Toolbar Height: '+toolbarht);
</script>
</body>
</html>
于 2013-11-13T16:20:04.477 回答
0
$(window).height();   // returns height of browser viewport
$(document).height(); // returns height of HTML document
$(window).width();   // returns width of browser viewport
$(document).width(); // returns width of HTML document
于 2013-11-13T16:02:50.003 回答
0

你是指身体的大小吗?

$('body').height();
于 2013-11-13T16:02:01.587 回答