gpt4 book ai didi

jquery - 使用 jquery 根据输入值创建数组

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

我有 html 表单,其名称类似于 ...name="bulk[]"...。有没有办法用 jquery 获取数组中的所有 bulk 值?例如

$('[name*="bulk"]').val().join('|');// this is incorrect just to show how I need that

最佳答案

.map()就是为了这个目的而设计的

var myarray = $('[name^="bulk"]').map(function(){
return $(this).val()
}).get();

关于jquery - 使用 jquery 根据输入值创建数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18577590/

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