添加“按下按钮”对 JQuery 的 keydown 有影响吗?
当选择按钮并按下某个键时,如何添加“按钮按下”效果?实际媒体的行为是有效的,只是没有显示出任何效果。
更具体地说: 我有一组可以使用左右箭头键遍历的按钮。当按下 Enter 时,当前选定的按钮将执行其 onclick 行为。
谢谢!
How can I add the "button down" effect when a button is selected and a key is pressed? The behaviour of the actual press works, it's just no effect is ever shown.
To be more specific:
I have a set of buttons that can be traversed through using the left and right arrow keys. And when Enter is pressed, the currently selected button will carry-out it's onclick behaviour.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个小提琴示例: http://jsfiddle.net/maniator/DBLem/
Here is a fiddle example: http://jsfiddle.net/maniator/DBLem/
好吧,我会保存当前具有焦点的元素的 id,如下所示,然后在用户按 Enter 键时单击它:
Well i'd save an id of the element which currently has focus like this and then click it when the user presses enter:
试试这个
Try this