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


JQuery innerWidth()用法及代碼示例


內寬是 jQuery 中的內置方法,用於返回第一個匹配元素的寬度。

用法:

$(selector).innerWidth()

這裏的selector就是被選擇的元素。

參數:它不接受任何參數。

返回值:它返回選擇器的寬度。

顯示 innerWidth() 方法工作原理的 jQuery 代碼:

例子:以下是 above-explained 方法的示例。

html


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        //jQuery code to demonstrate innerWidth function
        // document ready
        $(document).ready(function () {
            // on clicking the paragraph
            $("p").click(function () {
                // innerWidth
                document.getElementById("demo").innerHTML =
                    "innerWidth = " + $("div").innerWidth();
            });
        });
    </script>
</head>
<body>
    <h2 style="color: green;">
        GeeksforGeeks
    </h2>
    <div style="height: 100px;width: 200px; 
                background-color: blue">
    </div>
    <p>
        Click here to know innerWidth
    </p>
    <p id="demo"></p>
</body>
</html>

輸出:

jquery-14



相關用法


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