gpt4 book ai didi

jquery - 将每个子项 ('id' ) 放入数组或字符串中

转载 作者:行者123 更新时间:2023-12-03 22:19:21 24 4
gpt4 key购买 nike

我需要为从一系列 div id 创建的隐藏输入创建一个逗号分隔值

<div id="main">
<div id="A"></div>
<div id="B"></div>
<div id="C"></div>
</div>

<input type="hidden" id="children"/>

我想使用 jquery 但在使用该功能时遇到问题

    function update_input(main){
var array = new Array();

$('#'+main).children('id').each(function(){
array.push($(this).attr('div'));
});

input_value = array.toString();
$('#children').val(input_value);
}

这是不对的

最佳答案

    $('div','#main').each(function(){
array.push($(this).attr('id'));
});

关于jquery - 将每个子项 ('id' ) 放入数组或字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9729329/

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