jquery判斷是否出現捲軸的方法:1、透過「if ($(window).height() ef4caf1f05eb71355e1b6ef184ff58a4=網頁可見區域
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判斷是否出現捲軸的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!