jQuery中的事件属性是什么?
jQuery事件具有一些属性,例如用于keyup和keydown事件,是否按下了Ctrl键,创建事件时的时间戳等。
以下是一些可用的事件属性/属性:
如果在触发事件时按下Alt键,则设置为true;否则,则设置为false。在大多数Mac键盘上,Alt键标记为Option。
如果触发事件时按下Ctrl键,则设置为true,否则设置为false。
将值(如果有)作为第二个参数传递给
bind()
命令。对于鼠标事件,指定相对于页面原点的事件的水平坐标。
对于鼠标事件,指定相对于页面原点的事件的垂直坐标。
示例
您可以尝试运行以下代码以了解如何使用jQuery事件属性:
<html> <head> <title>jQuery Attributes</title> <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script type = "text/javascript" language = "javascript"> $(document).ready(function() { $('div').bind('click', function( event ){ alert('Event type is ' + event.type); alert('pageX : ' + event.pageX); alert('pageY : ' + event.pageY); alert('Target : ' + event.target.innerHTML); }); }); </script> <style> .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } </style> </head> <body> <p>Click on any square below to see the result:</p> <div class = "div" style = "background-color:blue;">ONE</div> <div class = "div" style = "background-color:green;">TWO</div> <div class = "div" style = "background-color:red;">THREE</div> </body> </html>