键盘输入触发 .addClass()

发布于 2024-10-31 05:29:05 字数 152 浏览 1 评论 0原文

在按键/按键/触发/事件之间,我不确定哪个最适合我想做的事情。

我想要一个功能,当我按住一个键,然后单击一个元素时,将向其添加 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我偏爱纯白色 2024-11-07 05:29:06

这将为 Alt 单击执行此操作,

$("div").click(function(e) {
    if (e.altKey) {
        alert('clicked')
    }
});

您也可以使用控制键 ctrlKey 或 Shift 键 shiftKey 执行此操作。
空格键有其特殊用途,不应该用于此目的。

检查工作示例 http://jsfiddle.net/8ZzJM/

This will do it for alt click,

$("div").click(function(e) {
    if (e.altKey) {
        alert('clicked')
    }
});

You can also do it using the control key ctrlKey or shift key shiftKey.
Spacebar have it's special uses and it should not be used for this purpose.

Check working example at http://jsfiddle.net/8ZzJM/

絕版丫頭 2024-11-07 05:29:06

您可以在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文