如何在javascript中获取设备屏幕大小,对于模式横向和纵向应该是相同的

时间:2014-03-22 07:06:25

标签: javascript jquery webview

我试图获得设备屏幕大小的宽度和高度而不是浏览器大小而不是分辨率,并且对于模式横向和纵向模式它应该是相同的。它有任何可能的方式来获取它在JavaScript中。

1 个答案:

答案 0 :(得分:0)

获取可用屏幕尺寸的非jQuery方法。 使用window.screen.availWidth/Height

alert(window.screen.availWidth);
alert(window.screen.availHeight);

http://www.quirksmode.org/dom/w3c_cssom.html#t10

availWidth and availHeight - The available width and height on the screen (excluding OS taskbars & such).