简体   繁体   中英

Detecting if vertical scroll is visible

I have this jQuery code. How to do the same thing but using pure JavaScript? I want to detect if the scrollbar is visible.

$(document).ready(function() {
    // Check if body height is higher than window height :)
    if ($("body").height() > $(window).height()) {
        alert("Vertical Scrollbar! D:");
    }

});

I had tried to do this way and it didn't work

if(document.body.height > window.height){
  alert("Vertical Scrollbar! D:");
}

You can use:

if(document.body.scrollHeight > window.innerHeight){
  alert("Vertical Scrollbar! D:");
}

See snippet for example:

 if(document.body.scrollHeight > window.innerHeight){ alert("Vertical Scrollbar! D:"); }
 <div style="height:1000px"></div>

Related: How to get height of entire document with JavaScript? and how to get exact height of body of the webbrowser window? .

You can insert div tag in your body tag and set div height and overflow auto.see below sample code.

<body>
   <div id="innerscroll" style="width: 100px; height:100px; overflow:auto;">* content</div>
</body>

Add script:

$(document).ready(function() {
    // Check if body height is higher than window height :)
    if ($("#innerscroll").get(0).scrollHeight > $(window).height()) {
        alert("Vertical Scrollbar! D:");
    }
});

Its working.

You can use:

if(document.body.scrollHeight > window.height){
  alert("Vertical Scrollbar! D:");
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM