如何根据tabindex使用jquery更改onfocus属性?
我的页面中有一个元素列表,这些元素按 tabindex 排序。我正在寻找的是如何模拟按下 Tab 键以便焦点移动到下一个元素?我计划使用 jquery 在特定时间间隔(即 1 秒)内改变对元素的关注。
I have a list of elements in my page which are ordered with tabindex. What I am looking for is how can I emulate that the tab key was pressed so the focus to move on the next element? I am planning to change focus on my elements in a specific time interval i.e. 1sec by using jquery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
编辑:
我看到您正在尝试模拟
TAB
按键而不是click
鼠标单击。我认为这会对您有所帮助: 使用 JavaScript 模拟选项卡按键Try this:
Edit:
I see you are trying to simulate
TAB
keypress notclick
mouseclick. This will help you I think: Simulating a tab keypress using JavaScript您可以使用 Ropstah 示例,但触发按键事件 http://api.jquery.com/trigger/ 。您可以指定要“按下”的键码
You could use Ropstah example but trigger the keypress event http://api.jquery.com/trigger/. You can specify which keycode you want "pressed"