1

嘿伙计们希望你能帮助我

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

现在我想遍历这些字段,但是在获取它们、遍历它们等方面遇到了麻烦。

即有这样的东西

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

现在想做一些类似“对于每个带有 name=resources 的输入,用它的值和索引号做一些事情”。

哦,我正在尝试用 jquery 来做到这一点....

提前致谢。

4

1 回答 1

3

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

现场演示

$('input[name^=resources]').each(function(){
    alert( $(this).val());
})
于 2012-09-22T17:27:46.030 回答