Get the size of the screen, current web page and browser window

前端 未结 19 2384
面向向阳花
面向向阳花 2020-11-21 05:29

How can I get windowWidth, windowHeight, pageWidth, pageHeight, screenWidth, screenHeight,

19条回答
  •  孤独总比滥情好
    2020-11-21 06:24

    A non-jQuery way to get the available screen dimension. window.screen.width/height has already been put up, but for responsive webdesign and completeness sake I think its worth to mention those attributes:

    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 and such).

提交回复
热议问题