解决方法
最大浏览器大小宽度将是屏幕的宽度和高度:
screen.height; screen.width;
但我会使用CSS媒体查询来做你想做的事情:
http://css-tricks.com/css-media-queries/
如果窗口小于500px宽,这样的东西会使页面背景变黑:
@media only screen and (max-width: 500px) { body { background: #000; } }
更新:
哦,你会想要一个不支持媒体查询的旧浏览器的polyfill:
https://github.com/scottjehl/Respond
这将通过IE6向您提供媒体查询!