我找了这个,我发现的只是得到窗口的高度。
有没有办法只获得浏览器屏幕的高度?
编辑:
抱歉英语不好,我是西班牙人。
这就是我要找的:
蓝色+红色是窗口的高度,我只想得到红色部分的高度。
我找了这个,我发现的只是得到窗口的高度。
有没有办法只获得浏览器屏幕的高度?
编辑:
抱歉英语不好,我是西班牙人。
这就是我要找的:
蓝色+红色是窗口的高度,我只想得到红色部分的高度。
试试下面
<!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>
$(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
你是指身体的大小吗?
$('body').height();