如何获取当前活动控件的TabIndex属性?
如何找到在运行时具有活动焦点的控件的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该能够执行以下操作:
应该为您提供活动控件及其选项卡索引。
You should be able to just do:
The should get you the active control and its tab index.
http://msdn.microsoft.com /en-us/library/system.web.ui.webcontrols.webcontrol.tabindex.aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol.tabindex.aspx
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.