遍历具有不同索引的表单元素名称的数组

时间:2012-09-22 17:25:18

标签: jquery html forms dom html-input

嘿伙计们希望你能帮助我

我有一个表单,带有动态数量的特定输入字段,其数组名称具有唯一但随机的索引。

现在我想遍历这些字段,但是无法获取它们,遍历它们等等。

我有类似的东西

<input type='text' name='resources[2]' />
<input type='text' name='resources[4]' />
<input type='text' name='resources[5]' />

现在想做一些事情,比如“对于名称=资源的每个输入,用它的值和索引号做一些事情。”

哦,我正试着用jquery做这个....

提前致谢。

1 个答案:

答案 0 :(得分:3)

您可以使用通配符匹配选择器中的模式,在这里您可以使用^(开头),您可以阅读有关通配符的更多信息 here

<强> Live Demo

$('input[name^=resources]').each(function(){
    alert( $(this).val());
})