如何隐藏 ACF 中灵活内容框中的复选框但不隐藏其他复选框

How to hide a checkbox that's in a fexible content box in ACF but not hide others

我在块上使用灵活的内容将图像添加到 post。在那个灵活的内容中,我有一个复选框可以使该图像成为特色图像。我想知道是否有一种方法可以让如果在第一个灵活内容中选中了一个复选框,它会隐藏其余内容中的复选框。问题是它们都具有相同的 class (.acf-field-5f8cf27f39a66) 和 ID (#three_img_plus_feature_img),因此当您隐藏该复选框时,它会隐藏所有这些复选框。关于如何解决此问题的任何解决方案。谢谢

我目前拥有的代码:

$(document).on("click", "#three_img_plus_feature_img input", function () {
    if ($("#three_img_plus_feature_img input").is(":checked")) {
        $("#three_img_plus_feature_img label").css("display", "none");
    } else {
        $("#three_img_plus_feature_img label").css("display", "block");
    }
});

HTML 看起来像这样。添加的每个项目都是一样的,所以如果有两个项目,它们看起来都一样。

<div id="three_img_plus_feature_img" class="acf-field acf-field-checkbox acf-field-5f8cf27f39a66" data-name="three_img_plus_feature_img" data-type="checkbox" data-key="field_5f8cf27f39a66" data-conditions="[[{&quot;field&quot;:&quot;field_5f8cf27f39951&quot;,&quot;operator&quot;:&quot;!=empty&quot;}]]">
  <div class="acf-label"></div>
  <div class="acf-input">
      <input type="hidden" name="acf-block_6019b745d990c[field_5f8cf27e7c782 [6019b7a4d990e][field_5f8cf27f39a66]">
      <ul class="acf-checkbox-list acf-bl">
          <li><label class=""><input type="checkbox" id="acf-block_6019b745d990c-field_5f8cf27e7c782-6019b7a4d990e-field_5f8cf27f39a66-three_img_plus_set_feature_img" name="acf-block_6019b745d990c[field_5f8cf27e7c782][6019b7a4d990e][field_5f8cf27f39a66][]" value="three_img_plus_set_feature_img"> Set featured image</label></li>
      </ul>
  </div>

您可以在点击的那个上添加一个临时的class,用于识别。也许不是最好的方法,但它可以工作:

$(document).on("click", "#three_img_plus_feature_img input", function () {
    $("#three_img_plus_feature_img").removeClass('current');
    $(this).closest("#three_img_plus_feature_img").addClass('current');

    if ($(this).is(":checked")) {
        $("#three_img_plus_feature_img:not(.current) label").css("display", "none");
    } else {
        $("#three_img_plus_feature_img:not(.current) label").css("display", "block");
    }
});