Home  >  Article  >  Web Front-end  >  How to determine whether the scroll bar exists in jquery

How to determine whether the scroll bar exists in jquery

王林
王林Original
2020-11-19 09:26:092279browse

Jquery method to determine whether the scroll bar exists: first use jquery to control the scroll bar scrolling; then determine whether the scroll bar is offset. If there is an offset, it means that the scroll bar exists. Otherwise, it means that the scroll bar does not exist. exist.

How to determine whether the scroll bar exists in jquery

The operating environment of this tutorial: Windows 7 system, jquery version 1.10.0. This article is applicable to all brands of computers.

Judgment idea:

Use jQuery to control the scroll bar scrolling, and then determine whether the scroll bar is offset. If there is, the scroll bar exists, otherwise it does not exist without scrolling.

(Learning video sharing: jquery video tutorial)

Code implementation:

<script type="text/javascript">
$(function(){
    $("body").scrollTop(10);//控制滚动条下移10px
    if( $("body").scrollTop()>0 ){
        alert("有滚动条");
    }else{
        alert("没有滚动条");
    }
    $("body").scrollTop(0);//滚动条返回顶部
});
</script>

Related recommendations: js tutorial

The above is the detailed content of How to determine whether the scroll bar exists in jquery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn