考虑到x滚动条,我需要获得窗口的窗口内部高度。但似乎window.innerHeight
返回相同的高度,无论x-scroll
栏是否可见。
是否有另一种获取窗口高度的方法,包括x-scroll
栏。
此jsFiddle表示添加或删除滚动条时该值不会更改。 应该有一个差异,它等于滚动条的高度。我也将下面的代码放在下面。谢谢。
JavaScript:
$('#innerHeight').html(window.innerHeight);
$('input').click(function () {
if ($('#bar').is(':visible')) {
$('#bar').hide();
$(this).val('show x-scroll bar');
$('#innerHeight').html(inner.innerHeight);
} else {
$('#bar').show();
$(this).val('hide x-scroll bar');
$('#innerHeight').html(window.innerHeight);
}
});
HTML:
<input type="button" value="show x-scroll bar" /><br />
<div id="bar"></div>
<p>inner height: <a id = "innerHeight"> px</a></p>