如何在Javascript中找到可用的屏幕大小

时间:2011-07-11 09:27:32

标签: javascript

我知道我们使用screen.height和screen.width来获取屏幕大小。 我有兴趣知道如何使用Javascript找到可用的屏幕区域。 这就像屏幕高度减去地址栏高度减去工具栏等。

2 个答案:

答案 0 :(得分:3)

使用window.innerHeightwindow.innerWidth

答案 1 :(得分:3)

对于大多数浏览器,您可以阅读window.innerWidthwindow.innerHeight,对于Internet Explorer,我认为document.documentElement.clientWidthdocument.documentElement.clientHeight,我认为......