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


JQuery event.which用法及代码示例


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

event.which

参数:它不接受任何参数,因为它是属性而不是函数。
返回值:它返回按下了哪个键盘键或鼠标按钮。

jQuery代码显示此属性的工作方式:

代码1:
在下面的代码中,显示 key 的ascii值。
<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>

输出:
“G”的Ascii值显示为-

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

<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 with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。