如何在缩放时获得移动浏览器窗口的宽度

时间:2015-03-14 14:39:30

标签: javascript jquery mobile

我首先尝试使用视口元标记,但它没有用。然后我尝试了 screen.availWidth但它也没有用。

2 个答案:

答案 0 :(得分:0)

尝试

   window.onscroll = function() {
       console.log(this.innerWidth)
   } 

请参阅Window.innerWidth

window.onscroll = function() {
  console.log(this.innerWidth)
};
body {
  height:1000px;
}
<body>
</body>

答案 1 :(得分:0)

尝试以下代码。 window.outerWidth给出宽度,包括滚动条。阅读this document

window.onscroll = function() {
   var w = window.outerWidth;
}