jquery 中的 Keydown - 我可以使用任何类型的插件来定位特定字母吗?

发布于 2024-12-06 13:13:19 字数 106 浏览 1 评论 0原文

我需要在按下某个字母时调用一个函数,即按“l”更改 div 的类,按“g”将其更改为另一个类。

这可以在 jquery 中本地完成吗,还是我必须找到一个插件?

谢谢。

I need to call a function when a certain letter is pressed, i.e. pressing 'l' changes a div's class, and pressing 'g' changes it to another class.

Can this be done natively in jquery, or will I have to find a plugin?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清音悠歌 2024-12-13 13:13:19

jQuery:

$(document).bind('keydown', function(e) {
   if (e.which == 39) { 
       rightArrowFunction();
   }
});

jQuery:

$(document).bind('keydown', function(e) {
   if (e.which == 39) { 
       rightArrowFunction();
   }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文