gpt4 book ai didi

javascript - 获取隐藏字段值Jquery?

转载 作者:数据小太阳 更新时间:2023-10-29 05:43:48 25 4
gpt4 key购买 nike

我有以下 HTML

<input type="hidden" name="conf1" value="7th IEEE/IFIP International Conference on Embedded and Ubiquitous Computing (EUC-09)">
<input type="hidden" name="conf2" value="IEEE International Symposium on Parallel and Distributed Processsing with Applications">
<input type="hidden" name="conf3" value="jkhga">
<input type="hidden" name="conf4" value="test">
<input type="hidden" name="conf5" value="The 3rd International Conference on Adaptive Business Information Systems (ABIS'09)">

<input type="text" name="published">

我正在尝试使用 jquery 将隐藏字段的值放入数组中。这是我尝试过的:

 var conferences = new Array();

conferences[0] = $('#conf1').val();
conferences[1] =$("[name='conf2']").val();
conferences[2] =$("[name='conf3']").val();
conferences[3] = $("[name='conf4']").val();
conferences[4] =$("[name='conf5']").val();

谁能指导我如何阅读它们?
提前致谢
院长

最佳答案

如果你打算使用 jQuery,你可以这样做:

var array = $('input:hidden').map(function() {
return this.value;
}).get();

.map() 遍历集合,并将返回值放入 jQuery 对象中。

.get() 从 jQuery 对象中检索数组。

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

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