WebForms 中的 Tab 键切换行为

发布于 2024-07-08 21:40:56 字数 131 浏览 3 评论 0 原文

在 WinForms 中,我可以设计一个表单并使用 TabValue 来控制每次用户点击“Tab”时选择哪个控件。 我的问题是,在网络表单中,是否有一种机制可以做同样的事情?

编辑:这同样适用于 Ajax 密集型应用程序吗?

In WinForms, I can design a form and have a TabValue to control which control is selected each time the user hits 'Tab'. My question, in a Webform, is there a mechanism for doing the same thing?

Edit: Does the same apply to an Ajax heavy application?

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

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

发布评论

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

评论(3

折戟 2024-07-15 21:40:56

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

榆西 2024-07-15 21:40:56

Web 控件有一个可以设置的 TabIndex 属性。

Web controls have a TabIndex property that you can set.

瘫痪情歌 2024-07-15 21:40:56

使用 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.

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