动态添加元素的选项卡索引
我有一个 jsp 页面,其中包含三个文本框和旁边的“添加”按钮。现在我必须为动态添加的元素设置 tabindex
。我该怎么做呢?
I have a jsp page with three text boxes and a ADD button beside it. Now I have to set the tabindex
for the dynamically added elements. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[正如您现在可能已经发现的那样,发布代码可以让其他人给出更明确的答案。如果没有示例,我只能想象您的代码和环境是什么......来自 ASP.NET MVC3 + jQuery]
[我使用了此 stackoverflow post 并修改了一点。]
我使用 jQuery 来修改 tabindex 值。我有多个由 jQuery 动态添加的表单。表单使用 div 和 style="display: table" 将文本字段组织到列中。
[相关的 CSS 样式]
[我的 ASP.NET MVC3 Razor cshtml 的一大块为浏览器生成 html——应该是可读的]
我对列中的所有值使用 tabindex;不仅仅是一个独特的订单。对于我测试的浏览器,当存在多个具有相同 tabindex 的文本字段时,标签导航将首先选择 html 代码中首先遇到的文本字段。
因此,对于我拥有的每个表单,我使用 0-9 之间的制表符值对它们进行分组。一旦我让单个表单的 Tab 键顺序按照我想要的方式工作,我就使用以下 jQuery 将我动态添加的每个表单的 tabindex 值增加 10(或 20、30 或 40)。第一个小数点 0-9 组织该表单中的选项卡,并且增加 10 的因子可以保持后续表单选项卡的跟随。
这是我自己第一次尝试——我相信其他人会有更好的方法。让我知道你的想法。
[As you may have figured out by now, posting code allows someone else to give a more definite answer. Without an example to work from, I can only imagine what your code and environment is...from ASP.NET MVC3 + jQuery]
[I used the information from this stackoverflow post and modified a lit bit.]
I use jQuery to modify the tabindex value. I have multiple forms that are dynamically added by jQuery. The forms use div and style="display: table" to organize the text fields into columns.
[The relevant CSS styles]
[A chunk of my ASP.NET MVC3 Razor cshtml that produces html for the browser--should be readable]
I use tabindex for all values in a column; not just a unique order. For the browsers I tested in, when there are multiple text fields with the same tabindex, the text field encountered first in the html code will be selected first by tab-navigation.
Therefore, for each form that I have, I use a tab value from 0-9 to group them. Once I have the tab order for an individual form working the way I want, I use the following jQuery to INCREMENT the tabindex value by 10 (or 20, or 30, or 40) for each form that I dynamically add. the first decimal, 0-9, organizes the tabs within that form, and incrementing the factors of 10 keeps the subsequent form tabs following along.
This is my first attempt at this myself--I'm sure someone else will have a better method. Let me know what you think.