我有多个表单的隐藏字段
<input type="hidden" class="mail-contacts" name="to[]" value="abc1">
<input type="hidden" class="mail-contacts" name="to[]" value="abc2">
<input type="hidden" class="mail-contacts" name="to[]" value="abc3">
对于不同的情况,隐藏字段的数量可以不同。如何获取这些隐藏字段的值?由于这是一个数组,所以无法使用
document.getElementById('')
我需要获取这些隐藏字段的值,然后将其作为查询参数传递。请帮帮我。我怎样才能做到这一点?