javascript 和动态文本框访问
我创建了一个具有动态创建文本框的 div。这些动态文本框也会动态地指定 ID,因为文本框的数量将取决于数据库中存在的值的数量。
我在动态创建的每个文本框 ID 前面添加了“text_”。
现在问题开始了。我想向所有这些动态文本框添加 javascript 验证。因为 javascript 需要 ID、名称或类。但是因为它们是动态的,我应该使用什么? 是否有任何文本框数组具有所有文本框 ID?请帮助。或任何其他方式将 js 应用到这些动态文本框。
希望你能从上面的故事中理解我的问题......
I have created a div having dyanamically created textboxes.these dynamic textboxes are also given ID dynamically as the number of textboxes are going to be dependent on the number of values present in database.
I added 'text_' infront of every textbox id creating dynamically.
Now the problem starts.i want to add javascript validation to all those dynamic textboxes.as javascript requires an ID,Name, or Class..but as they are dynamic wat shud i use?
is there any textbox array having all textbox id's??plz help.or any other way to apply js to those dynamic textboxes.
Hope u will understand my problem from above story...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 getElementsByTagName 函数将所有文本框放入数组,然后测试它们的 id 是否以您的前缀开头;-)
just get all textboxes to array using getElementsByTagName function, then test if their ids start with your prefix ;-)
使用jquery,您可以使用
:nth-child()
选择器来选择您想要验证的任何元素。示例:
这将验证您的
表单
的第二个输入
。当然,您必须在您使用的验证方法中对其进行调整。using jquery you can use the
:nth-child()
selector to select any element you want to validate.Example:
This will validate the second
input
for yourform
. Of course you have to adapt it in the validation method you use.