如何根据tabindex使用jquery更改onfocus属性?

发布于 2024-10-21 04:10:14 字数 107 浏览 2 评论 0原文

我的页面中有一个元素列表,这些元素按 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 技术交流群。

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

发布评论

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

评论(2

长途伴 2024-10-28 04:10:14

试试这个:

$('a[href="#your_tab"]').trigger('click')

编辑:
我看到您正在尝试模拟 TAB 按键而不是 click 鼠标单击。我认为这会对您有所帮助: 使用 JavaScript 模拟选项卡按键

Try this:

$('a[href="#your_tab"]').trigger('click')

Edit:
I see you are trying to simulate TAB keypress not click mouseclick. This will help you I think: Simulating a tab keypress using JavaScript

水溶 2024-10-28 04:10:14

您可以使用 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"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文