2014-07-24 109 views
0

我想要在IE中獲得內部高度。我的頁面內容很長,瀏覽器有一個滾動條。在IE中獲取innerHeight

我得到了使用。它window.innerHeight在Firefox和Chrome,但不是在IE(試過IE9)

有沒有辦法得到它的工作?

參考截圖: http://i.stack.imgur.com/m50Mg.jpg

附:

我的問題是另一回事。 我的IE上運行QUIRKS模式

$(window).height()window.innerHeight在標準模式下運行時工作。

回答

1
document.documentElement.clientHeight; 

或使用jQuery:

$(window).height(); 
0

你嘗試過:

window.height();//jquery 
0

試試下面的例子

$(document).height(); // Just returns the actual height of the conatiner 

$(document).innerHeight(); // including padding but not border. 

$(document).outerHeight(); // including padding and border. 

$(document).outerHeight(true); // if wants margin height means Including margin, padding, border and height