Get browser window width including scrollbar

后端 未结 4 1000
粉色の甜心
粉色の甜心 2020-12-15 04:09

I tried to get browser window width with $(window).width();. On IE 10, it does return the full browser width, include the scroll bar. However, on Firefox and Ch

4条回答
  •  Happy的楠姐
    2020-12-15 04:34

    The first answer was close, but upon further inspection it is a bit more complicated. The body.clientWidth is the width excluding the scrollbars. The window.outerWidth is the width including the scrollbars and other window elements like the window border. The window.innerWidth is the actual width of the window, including scrollbars, but not including the window border.

    enter image description here

提交回复
热议问题