Add/append 从复选框到隐藏字段的值

Add/append value from checkboxes to hidden field

我有 4 个复选框和一个隐藏字段,其中包含四个电子邮件地址中的任意一个,具体取决于已选择的选项。如果未选中相应的复选框,则还需要从隐藏字段中删除电子邮件地址。

我不知道如何编写这样的函数,希望有人至少能为我指明正确的方向,或者有人可以为我编写脚本吗?

假设您有以下 html:

<input type="checkbox" name="email[]" value="email1@example.com">
<input type="checkbox" name="email[]" value="email2@example.com">
<input type="checkbox" name="email[]" value="email3@example.com">
<input type="checkbox" name="email[]" value="email4@example.com">
<input id="hidden" type="hidden" name="hidden">

下面jQuery给你结果

        $(function() {
        // listen for changes on the checkboxes
        $('input[name="email[]"]').change(function() {
            // have an empty array to store the values in
            let values = [];
            // check each checked checkbox and store the value in array
            $.each($('input[name="email[]"]:checked'), function(){
                values.push($(this).val());
            });
            // convert the array to string and store the value in hidden input field
            $('#hidden').val(values.toString());
        });
    });

请注意,这是关于如何克服您的问题的粗略解决方案,可以进行简化和重构。将此视为概念证明。