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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。