我是jquery新手。我已经完成了一半的工作。但我找不到任何解决方案。 javascript - 选择selectpicker选项后如何选中复选框?-LMLPHP

在这里,您可以看到图像有四个复选框:指甲,头发,皮肤护理,按摩。我想当用户单击沙龙,移动美容师和两者都在指甲上方复选框时被选中,并且当用户单击选择服务时,指甲复选框未选中,因此这适用于所有。我这样做了,但是问题是,当我第二次从指甲中选择该项目时,该复选框未选中。它只能工作一次。请帮我。这里我有代码:-

HTML:-

<div class="one-row">
    <?php foreach ($services as $key => $allservices) {
        if ($key <= 3) {
            if (!empty($data['services'])) {
                if (in_array($allservices['id'], $data['services'])) {
                    $checked = "checked";
                } else {
                    $checked = "";
                }
            } else {
                $checked = "";
            } ?>
            <div class="div_img_part-2">
      <span class="img_part_class-2"><img src="{{ asset('images/ServiceImages/'. $allservices['image'])}}">
                </span>
                <span class="text_part_class-2">
                     <p class="custom-checkbox firstpart">
                         <input class="firstdisable" type="checkbox" id="{{ $key }}" name="services[]"
                                value="{{ $allservices['id'] }}" <?= $checked; ?>/>
                         <label for="{{ $key }}">{{$allservices['name']}}</label>
                     /p>
                </span>
                </span>
                <select name="service_type[<?php echo $allservices['name']; ?>]" class="selectpicker">
                    <option value="">Select Your Sevice</option>
                    <option value="Salon" <?php if (!empty($data['service_type'][$allservices['name']])) {
                        if ($data['service_type'][$allservices['name']] == "Salon") { ?> selected
                        <?php }
                    } ?> >Salon
                    </option>
                    <option value="Mobile beautician" <?php if (!empty($data['service_type'][$allservices['name']])) {
                        if ($data['service_type'][$allservices['name']] == "Mobile beautician") { ?> selected
                        <?php }
                    } ?> >Mobile beautician
                    </option>
                    <option value="Both" <?php if (!empty($data['service_type'][$allservices['name']])) {
                        if ($data['service_type'][$allservices['name']] == "Both") { ?> selected
                        <?php }
                    } ?>>Both
                    </option>
                </select>
            </div>
        <?php }
    } ?>
</div>


我正在使用Laravel框架
这是我的jQuery代码:-

$('.selectpicker').selectpicker('refresh');
$(".selectpicker").on('change', function() {
    var value = $(this).parents(".div_img_part-2").find(".selectpicker").val();
    alert(value);
    if (value == "") {
        $(this).parents(".div_img_part-2").find("input[type='checkbox']").attr('checked', false);
        if ($("input:checked").length == 0) {
            $('.disable').prop('disabled', false);
            $('.selectpicker').selectpicker('refresh');
        }
    } else {
        $(this).parents(".div_img_part-2").find("input[type='checkbox']").attr('checked', true);
    }
});

最佳答案

使用closest()和prop()代替parent()和attr()。

尝试这个 :

$(".selectpicker").on('change', function () {
    var value = $(this).val();
    if (value == "") {
        $(this).closest(".div_img_part-2").find("input[type='checkbox']").prop('checked', false);
        if ($("input:checked").length == 0) {
            $('.disable').prop('disabled', false);
            $('.selectpicker').selectpicker('refresh');
        }
    } else {
        $(this).closest(".div_img_part-2").find("input[type='checkbox']").prop('checked', true);
    }
});

08-17 07:00
查看更多