如何确定浏览器中的滚动条何时出现
我正在使用调整大小事件,但是当滚动条出现时 - 它会更改窗口大小,但不会调用事件。
I am using resize event, but when scroller appear - it change window size, but event is not called.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须检查内容高度是否高于浏览器的内部高度。 不幸的是,没有添加滚动条的事件监听器......
You have to check if the content height is higher than the inner height of the browser. Unfortunately, there is no event listener for scrollbar being added...
您可以密切关注客户端宽度 - 当滚动条出现时,它会减少大约 20px。
You could keep tabs on the client width - it will reduce by about 20px when the scrollbar appears.