How can I tell if there is a scroll bar on the page? Which element does the scroll bar belong to?

The DOM structure of the

page is as follows:

clipboard.png
when a scroll bar appears on the page, the scrollHeight and clientHeight of the body-sharpapp. Main-container. Container element are both equal
how to tell that the current page has a scroll bar?

Jul.03,2021

get the current window height document.documentElement.clientHeight
get the current body height document.body.clientHeight

if(document.body.clientHeight > document.documentElement.clientHeight){
    // 
}
Menu