键盘输入触发 .addClass()
在按键/按键/触发/事件之间,我不确定哪个最适合我想做的事情。
我想要一个功能,当我按住一个键,然后单击一个元素时,将向其添加 css 效果。
例如:
我按住空格键,然后单击一个 img 元素。它获得一个类,将其移动一段距离,并给它一个边界。
Between keypress/keydown/trigger/event, i'm not sure which is the best for what i want to do.
I want a function that when i hold a key down, then click on an element, a css effect will be added to it.
For example:
I hold spacebar, then click an img element. It gains a class that moves it some distance, and gives it a border.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将为 Alt 单击执行此操作,
您也可以使用控制键
ctrlKey
或 Shift 键shiftKey
执行此操作。空格键有其特殊用途,不应该用于此目的。
检查工作示例 http://jsfiddle.net/8ZzJM/
This will do it for alt click,
You can also do it using the control key
ctrlKey
or shift keyshiftKey
.Spacebar have it's special uses and it should not be used for this purpose.
Check working example at http://jsfiddle.net/8ZzJM/
您可以在 onKeyDown 触发器上设置一些全局变量,并在 onKeyUp 中删除此设置。然后在绑定onClick函数后,您可以检查是否按下了某个键。
You can set some global variable on onKeyDown trigger, and remove this setting in onKeyUp. Then after you bind onClick function, you can check whether some key in pressed.
https://github.com/jeresig/jquery.hotkeys
http://www.gmarwaha.com/blog/2009/06/ 16/ctrl-key-combination-simple-jquery-plugin/
这些插件可能会帮助您解决问题。
https://github.com/jeresig/jquery.hotkeys
http://www.gmarwaha.com/blog/2009/06/16/ctrl-key-combination-simple-jquery-plugin/
Those plugins might help you with your issue.