gpt4 book ai didi

javascript - 将数据属性与数组一起用于复选框输入

转载 作者:行者123 更新时间:2023-11-30 08:28:02 25 4
gpt4 key购买 nike

<分区>

我有多个 checkbox,如果 checkbox已选择。选择它时,我希望使用 data-template 中的数据并将其放入 array 中,这样如果选择了多个选项,它就会显示出来。

我做错了什么?

$('.tp-template-check').on('change', function() {
var templateSelection = {};

$('.tp-template-check:checked').each(function() {
templateSelection[$(this).data('template')] = $(this).val();
$('#template-selection-review').html(templateSelection);
});
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="checkbox" class="tp-template-check" data-template="Winter">
<input type="checkbox" class="tp-template-check" data-template="Spring">
<input type="checkbox" class="tp-template-check" data-template="Summer">
<input type="checkbox" class="tp-template-check" data-template="Fall">
<div id="template-selection-review"></div>

enter image description here

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