WebForms 中的 Tab 键切换行为
在 WinForms 中,我可以设计一个表单并使用 TabValue 来控制每次用户点击“Tab”时选择哪个控件。 我的问题是,在网络表单中,是否有一种机制可以做同样的事情?
编辑:这同样适用于 Ajax 密集型应用程序吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 ASP 控件上的 TabIndex 属性进行设置。 如果您想在非 ASP 控件上执行此操作,您也可以尝试类似 jQuery tabIndex 插件。
You can set this with the TabIndex property on the ASP controls. If you want to do this on something that isn't an ASP control, you could also try something like the jQuery tabIndex plugin.
Web 控件有一个可以设置的 TabIndex 属性。
Web controls have a TabIndex property that you can set.
使用 TabIndex 值时,将它们命名为 5、10、15、20 等,而不是 1、2、3、4,这样如果您想稍后在中间插入控件甚至移动它,则无需重新编号所有控件的 TabIndex 属性。
When using the TabIndex values, name them as 5,10,15,20 and so on rather than 1,2,3,4 so if you want to insert a control in between later or even move it, you would not need to renumber the TabIndex property on all the controls.