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


JQuery mousedown()用法及代碼示例


jQuerymousedown()method 是一種內置方法,當在所選元素上按下鼠標左鍵時該方法起作用。

用法:

$(selector).mousedown(function)

參數:該函數接受單個參數函數這是可選的。它用於指定調用 mousedown 事件時要運行的函數。

示例 1:此示例說明了 jQuery 中的mousedown() 方法。

HTML


<!DOCTYPE html>
<html>
<head>
    <title>The mousedown 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>
        $(document).ready(function () {
            $("div").mousedown(function () {
                alert("Mouse left key was pressed");
            });
        });
    </script>
    <style>
        div {
            width: 200px;
            height: 40px;
            font-weight: bold;
            border: 2px solid green;
            padding: 20px;
        }
    </style>
</head>
<body>
    <!-- click on this button and pop up will appear-->
    <div>
        Welcome to GeeksforGeeks!
    </div>
</body>
</html>

輸出:

示例 2:在此示例中,我們將使用mousedown()方法更改背景顏色。

HTML


<!DOCTYPE html>
<html>
<head>
    <title>The mousedown 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>
        $(document).ready(function () {
            $("div").mousedown(function () {
                $("div").css(
                    "background-color", "green");
            });
        });
    </script>
    <style>
        div {
            width: 200px;
            height: 40px;
            font-weight: bold;
            border: 2px solid black;
            padding: 20px;
        }
    </style>
</head>
<body>
    <!-- click on this button to change the background color-->
    <div>
        Welcome to GeeksforGeeks!
    </div>
</body>
</html>

輸出:

相關文章:



相關用法


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