如何按 Tab 键浏览 HTML 中的元素
我有一个名为 checkKeyCode(obj) 的方法,它只需将您在文本框中输入的字符并用其 keyCode 替换它。
从文本框输入的 onkeydown 属性调用此方法(onkeydown =“return checkKeyCode(this)”)。
问题是我希望能够按选项卡并聚焦到下一个元素。我不必知道元素的 id、名称或标签。基本上,当您按 Tab 键(将焦点设置到表单中的下一个元素)时,我想将我的方法的功能与浏览器的默认功能结合起来。
这能做到吗。如果是这样怎么办?
任何帮助将不胜感激。
I have a method called checkKeyCode(obj) which simply takes the character you type into a textbox and replaces it with its keyCode.
This method is called from onkeydown attribute of textbox input (onkeydown="return checkKeyCode(this)").
The problem is then I want to be able to press tab and focus to the next element. I don't have to know the element's id or name or tag. Basically I want to combine my method's functionality with the default functionality of browser when you press Tab key (which sets focus to the next element in the form).
Can this be done. If so how?
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查处理程序中的键码,如果值为 9,则它是一个制表符。如果是,则退出您的处理程序并返回 false。
另外,不要使用 onkeydown 事件。请改用 onkeyup。
Check the keycode in your handler and if the value is 9, it's a tab. Exit your handler if it is and return false.
Also, don't use the onkeydown event. Use onkeyup instead.