gpt4 book ai didi

javascript - 如何获取隐藏字段数组值?

转载 作者:行者123 更新时间:2023-11-29 16:15:07 24 4
gpt4 key购买 nike

我有多个表单的隐藏字段

<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('')

我需要获取这些隐藏字段的值,然后将其作为查询参数传递。请帮帮我。我该怎么做?

最佳答案

jQuery:

<script type='text/javascript' src='http://code.jquery.com/jquery-latest.min.js'>
<script type='text/javascript'>
var lst_to = [];
$("input:hidden.mail-contacts").each(function() {
lst_to.push($(this).val());
});
var str_query = "?to=" + lst_to.join();
</script>

jsFiddle

关于javascript - 如何获取隐藏字段数组值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17802254/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com