jQuery:如何捕获 keydown +鼠标点击事件?
我有一个 div
元素。我需要在按下 alt 键 (keyCode = 17) 时捕获鼠标在此 div
上的点击。
这是我必须捕捉按键的内容:
// Html <div id="targetDiv">I want to put a ding in the universe.</div>
// Java-script $(document).ready(function(){ $(window).bind('keydown', function(event){ if ( 17 == event.keyCode ) { // How to catch mouse click on $('#targetDiv') ? } }); });
How to catch mouse click on div while alt-key is pressed?
I have a div
element. I need to catch a mouse click on this div
while alt-key (keyCode = 17) is pressed.
Here is what i've got to catch key press:
// Html <div id="targetDiv">I want to put a ding in the universe.</div>
// Java-script $(document).ready(function(){ $(window).bind('keydown', function(event){ if ( 17 == event.keyCode ) { // How to catch mouse click on $('#targetDiv') ? } }); });
How to catch mouse click on div while alt-key is pressed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,您可以检查
.altKey
属性 :您可以在此处进行测试。
You can check the
.altKey
property, for example:You can test it out here.