jquery判断是否出现滚动条的方法:1、通过“if ($(window).height()
本教程操作环境:windows7系统、jquery1.10.0版本、thinkpad t480电脑。
推荐:《jquery视频教程》
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 // 网页可见区域
0
0
相关文章
如何修复 Gymso 模板中外部链接导致的 DOMException 错误
如何为 Treeview 菜单添加开闭动画与加载状态效果
如何为树形菜单(TreeView)添加展开/收起动画与加载提示效果
如何为 Treeview 菜单添加展开/收起动画与加载状态效果
Rails 7 中非模块化第三方 JS 库的正确集成方案
相关标签:
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具











