当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery slideUp()用法及代码示例


slideUp()是jQuery中的一种内置方法,用于隐藏选定的元素。
用法:

$(selector).slideUp(speed);

参数:它接受可选参数“speed”,该参数指定效果持续时间的速度。

返回值:它不返回任何内容,只是隐藏所选元素。


jQuery代码显示slideUp()方法的用法方式:

代码1:
在下面的代码中,没有参数传递给该方法。

<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        <!-- jQuery code to show the working of this method -->
        $(document).ready(function() { 
            $(".btn1").click(function() { 
                $("p").slideUp(); 
            }); 
        }); 
    </script> 
    <style> 
        div { 
            width: 300px; 
            height: 100px; 
            padding: 20px; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <div> 
        <p>This paragraph will get hide.</p> 
        <!-- click on this button -->
        <button class="btn1">Slide up</button> 
    </div> 
</body> 
  
</html>

输出:
在下面的视频中,已显示了该方法的用法原理。

代码2:
在下面的代码中,将speeding参数传递给此方法。

<!DOCTYPE html> 
<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        <!-- jQuery code to show the working of this method -->
        $(document).ready(function() { 
            $(".btn1").click(function() { 
                $("p").slideUp(3000); 
            }); 
        }); 
    </script> 
    <style> 
        div { 
            width: 300px; 
            height: 100px; 
            padding: 20px; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <div> 
        <p>This paragraph will get hide.</p> 
        <!-- click on this button -->
        <button class="btn1">Slide up</button> 
    </div> 
</body> 
  
</html>

输出:
在下面的视频中,已显示了该方法的用法原理。



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | slideUp() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。