gpt4 book ai didi

javascript - 复选框数组

转载 作者:行者123 更新时间:2023-12-02 16:04:36 25 4
gpt4 key购买 nike

只是想知道是否有人可以帮忙。我目前有这样的代码:

<section>
<span class="tags"></span>

<label for="shoes">Shoes</label>
<input type="checkbox" id="shoes">

<label for="jeans">Jeans</label>
<input type="checkbox" id="jeans">

<label for="tops">Tops</label>
<input type="checkbox" id="tops">
</section>

<section>
<span class="tags"></span>

<label for="monkey">monkey</label>
<input type="checkbox" id="monkey">

<label for="lion">lion</label>
<input type="checkbox" id="lion">

<label for="dog">dog</label>
<input type="checkbox" id="dog">
</section>

每个“部分”都是动态生成的。选中时,如何将每个输入的值插入到每个部分的范围中。我一直在尝试使用数组,但由于每个部分都是动态生成的而陷入困境。

你们谁能帮帮我吗?

最佳答案

最好给每个复选框输入一个值,无论如何,我会使用 id 来代替。

// Listen to all checkboxes
$('section input[type="checkbox"]').click(function(e) {
var $this = $(e.target);
// Find the container of same group.
var $parent = $this.parent('section');
// Find all checked ones.
var checked = $parent.find('input[type="checkbox"]:checked');
// Map the value or id, to an array.
var result = $.map(checked, function(ele) {
return $(ele).attr('id');
});
// Get the result, use it whatever you want.
$parent.find('.tags').text(result.join(' '));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<section>
<span class="tags"></span>

<label for="shoes">Shoes</label>
<input type="checkbox" id="shoes">

<label for="jeans">Jeans</label>
<input type="checkbox" id="jeans">

<label for="tops">Tops</label>
<input type="checkbox" id="tops">
</section>

<section>
<span class="tags"></span>

<label for="monkey">monkey</label>
<input type="checkbox" id="monkey">

<label for="lion">lion</label>
<input type="checkbox" id="lion">

<label for="dog">dog</label>
<input type="checkbox" id="dog">
</section>

关于javascript - 复选框数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30886390/

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