这篇文章主要介绍jquery如何判断是否出现滚动条,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
jquery判断是否出现滚动条的方法:1、通过“if ($(window).height() < $(document).height() ){}”方法判断可视区域是否超过实际高度;2、通过if语句判断屏幕可用工作区高度即可。
jquery判断是否出现滚动条
一、判断可视区域是否超过实际高度,超过一定存在
if ($(window).height() < $(document).height() ) { alert('出现滚动条') }
使用原生JavaScript的写法
if (document.documentElement.clientHeight < document.documentElement.offsetHeight){ alert('出现滚动条') }
二、屏幕可用工作区高度>=网页可见区域
if (window.screen.availHeight >= document.body.clientHeight) { alert("页面无滚动条") } else { alert("页面有滚动条") }
注:
● $(window).height() // 浏览器窗口可视区域高度
document.documentElement.clientHeight
● $(document).height() // 浏览器窗口文档的高度
document.documentElement.offsetHeight
● window.screen.availHeight // 屏幕可用工作区高度
● document.body.clientHeight // 网页可相关文章!
以上是“jquery如何判断是否出现滚动条”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。