当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery event.which用法及代码示例


jQuery event.which是 jQuery 中的内置属性,用于返回为事件按下的键盘键或鼠标按钮。

用法:

event.which

参数:它不接受任何参数,因为它是一个属性,而不是一个函数。

展示此属性工作原理的 jQuery 示例:
示例 1:在下面的代码中,显示了该键的 ascii 值。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://code.jquery.com/jquery-1.10.2.js">
    </script>
    <script>
        $(document).ready(function () {
            <!-- jQuery code to show event.which property -->
            $("input").keydown(function (event) {
                $("div").html("Key: " + event.which);
            });
        });
    </script>
    <style>
        div {
            margin: 20px;
            width: 80px;
            height: 60px;
            padding: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <!-- Here ascii value of the key will be shown -->
    <div>
        <p></p>
    </div>
    Name :
    <input type="text">
</body>
</html>

输出:

示例 2:在下面的代码中,显示按下了哪个鼠标按钮。

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 show event.which property
        $(document).ready(function () {
            $("div").mousedown(function (event) {
                $("div").append(
                    "<br>Mouse button : " + event.which);
            });
        });
    </script>
    <style>
        div {
            border: 2px solid green;
            width: 400px;
            height: 300px;
            padding: 20px;
        }
    </style>
</head>
<body>
    <!-- click inside and see -->
    <div style="">
        Click anywhere in this box !!!
    </div>
</body>
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery event.which Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。