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


JQuery resize()用法及代碼示例


resize()方法是jQuery中的內置方法,當瀏覽器窗口更改其大小時使用。

用法:

$(selector).resize(function)

參數:該方法接受可選的單參數函數。它用於指定調用resize事件時要運行的函數。


返回值:此方法返回選擇的元素,並增加其大小。

下麵的示例說明了jQuery中的resize()方法:

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>The resize method</title> 
        <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> 
            x = 0; 
            $(document).ready(function() { 
                $(window).resize(function() { 
                    $("p").text(x += 1); 
                }); 
            }); 
        </script> 
        <style> 
            div { 
                width: 150px; 
                height: 100px; 
                padding: 20px; 
                border: 2px solid green; 
                font-size: 20px; 
            } 
        </style> 
    </head> 
       
    <body> 
        <div> 
            <!-- press "ctrl" and "+" key together 
            and see the effect -->
            Welcome to GfG! 
            <br> 
            <p>0</p> 
            times. 
        </div> 
    </body> 
</html>

輸出:
在單擊任何東西之前。

在鍵盤上同時單擊2次“ctrl”和“+”鍵之後。



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | resize() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。