javascript 和动态文本框访问

发布于 2024-10-15 16:23:58 字数 279 浏览 1 评论 0原文

我创建了一个具有动态创建文本框的 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 技术交流群。

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

发布评论

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

评论(2

寻找一个思念的角度 2024-10-22 16:23:58

只需使用 getElementsByTagName 函数将所有文本框放入数组,然后测试它们的 id 是否以您的前缀开头;-)

just get all textboxes to array using getElementsByTagName function, then test if their ids start with your prefix ;-)

倾听心声的旋律 2024-10-22 16:23:58

使用jquery,您可以使用 :nth-child() 选择器来选择您想要验证的任何元素。

示例:

$('form input:nth-child(2)').validate();

这将验证您的表单的第二个输入。当然,您必须在您使用的验证方法中对其进行调整。

using jquery you can use the :nth-child() selector to select any element you want to validate.

Example:

$('form input:nth-child(2)').validate();

This will validate the second input for your form. Of course you have to adapt it in the validation method you use.

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