當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery slideUp()用法及代碼示例


slideUp()是一個內置方法jQuery用於隱藏選定的元素。

用法:

$(selector).slideUp(speed);

參數:它接受一個可選參數“speed”,該參數指定效果持續時間的速度。

jQuery 示例展示 slideUp() 方法的用法原理:
示例 1:在下麵的代碼中,沒有參數傳遞給該方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <!--jQuery code to show the working of this method-->
    <script> 
            $(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:在下麵的代碼中,加速參數傳遞給此方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <!--jQuery code to show the working of this method-->
    <script> 
            $(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() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。