使用 javascript 获取文档的当前 tabIndex 值
我制作了一个自定义下拉框,可以使用 tab
键自动进入焦点,但我无法将焦点传递到行中的下一个元素...我该怎么做?
我正在考虑获取当前“tabIndex”的当前值并将焦点设置为下一个,还有其他方式吗?顺便说一句,使用 mootools
I have a custom drop down box I have made and focus can be brought into with the tab
key automatically, but I can not pass focus to the next element in line...how do I do this?
I was thinking getting the current value of what the current 'tabIndex' is and setting focus to the next in line, any other way? Using mootools btw
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老问题了,分享一下我是如何解决这个问题的。
我将一个文本输入隐藏在实际接收焦点的自定义控件后面。这样我就不会用它来捕获文本来搜索下拉列表。
Old questions, let me share how I solved the problem.
I stashed a text input behind my custom control that actually receives the focus. This way I use it not also to catch text to search the dropdown.