如何获取当前活动控件的TabIndex属性?

发布于 2024-10-18 16:51:23 字数 112 浏览 0 评论 0原文

如何找到在运行时具有活动焦点的控件的 TabIndex 属性。 我正在使用 UlitmateEditor(Text Editor) 即用户控件,所以我希望将焦点集中在该编辑器的主体内。

How do I find the TabIndex property of the control who has the active focus at runtime.
I am using UlitmateEditor(Text Editor) i.e User Control , so i want focus inside the body of that Editor.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

生生漫 2024-10-25 16:51:23

您应该能够执行以下操作:

alert(document.activeElement.tabIndex);

应该为您提供活动控件及其选项卡索引。

You should be able to just do:

alert(document.activeElement.tabIndex);

The should get you the active control and its tab index.

风筝有风,海豚有海 2024-10-25 16:51:23

AFAIK asp.net 是一种用于服务 HTML 页面的技术 =)
如果你想知道 HTML 中当前元素的 tabindex,那么你应该使用
document.activeElement.tabIndex。不过,这似乎是 javascript 问题。

AFAIK asp.net is a technology for serving HTML pages =)
If you want to know tabindex of current element in HTML, then you should use
document.activeElement.tabIndex. this seems to be javascript question, though.

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