Rumah > Artikel > hujung hadapan web > jquery判断是否出现滚动条的方法
jquery判断是否出现滚动条的方法:1、通过“if ($(window).height() fa88488e020dbc0aafae61366363cea5=网页可见区域
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 // 网页可见区域
Atas ialah kandungan terperinci jquery判断是否出现滚动条的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!