我已经尝试了所有可能的方法,但还是没有成功。 我有一个模式窗口与复选框,我想当模式打开时,复选框勾选或取消勾选应该基于数据库值。(我已经与其他领域的人合作过了。)我开始试着去检查,但不管用。

我的HTML div:

<div id="fModal" class="modal" >
    ...
    <div class="row-form">
        <div class="span12">
            <span class="top title">Estado</span>

          <input type="checkbox"  id="estado_cat" class="ibtn">
       </div>
    </div>             
</div>

和jQuery:

$("#estado_cat").prop( "checked", true );

我也尝试了attr,以及在论坛上看到的其他工具,但似乎都不起作用。 谁能告诉我怎么走?


EDIT

好吧,我真的遗漏了一些东西。如果复选框在页面中,我可以检查/取消检查使用代码,但它是在模态窗口中,我不能。我尝试了几十种不同的方法。

我有一个链接,应该打开模式:

<a href='#' data-id='".$row['id_cat']."' class='editButton icon-pencil'></a>

和jQuery“监听”点击和执行一些操作,如填充一些文本框的数据来自数据库。一切都像我想要的那样工作,但问题是我不能设置复选框选中/未选中使用代码。请帮助!

$(function () {
    $(".editButton").click(function () {
        var id = $(this).data('id');
        $.ajax({
            type: "POST",
            url: "process.php",
            dataType: "json",
            data: {
                id: id,
                op: "edit"
            },
        }).done(function (data) {
            // The next two lines work fine,
            // i.e. it grabs the value from database and fills the textboxes
            $("#nome_categoria").val(data['nome_categoria']);
            $("#descricao_categoria").val(data['descricao_categoria']);

            // Then I tried to set the checkbox checked (because it's unchecked by default)
            // and it does not work
            $("#estado_cat").prop("checked", true);
            $('#fModal').modal('show');
        });

        evt.preventDefault();
        return false;
    });
});

当前回答

对我有用:

$checkbok.prop({checked: true});

其他回答

对我有用:

$checkbok.prop({checked: true});
.attr("checked",true)
.attr("checked",false)

将工作。确保true和false不在引号内。

这个作品。

 $("div.row-form input[type='checkbox']").attr('checked','checked');
<div class="custom-control custom-switch">
      <input type="checkbox" class="custom-control-input" name="quiz_answer" id="customSwitch0">
      <label class="custom-control-label" for="customSwitch0"><span class="fa fa-minus fa-lg mt-1"></span></label>
  </div>

记住分别增加id和for属性。“动态添加引导”复选框。

$(document).on('change', '.custom-switch', function(){
    let parent = $(this);
    parent.find('.custom-control-label > span').remove();
    let current_toggle = parent.find('.custom-control-input').attr('id');
    if($('#'+current_toggle+'').prop("checked") == true){
        parent.find('.custom-control-label').append('<span class="fa fa-check fa-lg mt-1"></span>');
    }
    else if($('#'+current_toggle+'').prop("checked") == false){
        parent.find('.custom-control-label').append('<span class="fa fa-minus fa-lg mt-1"></span>');
    }
})

如果您希望在GreaseMonkey脚本中使用此功能来自动选中页面上的复选框,请记住,简单地设置选中的属性可能不会触发相关的操作。在这种情况下,“点击”复选框可能会(以及设置选中的属性)。

$("#id").click()