复选框的Jquery值总是返回

这个问题在这里已经有了答案:

  • 检查复选框是否与jQuery 19答案一起检查

  • var returnCheck = $('#closed-' + rowCounter).is(':checked');
    

    将返回您当前的复选框状态。


    改为使用.prop()方法获取checked属性。 它会返回一个布尔值。

    var closedIssue = $('#closed-' + rowCounter).prop('checked');
    

    或纯JavaScript:

    var closedIssue = document.getElementById('closed-' + rowCounter).checked;
    
    链接地址: http://www.djcxy.com/p/55985.html

    上一篇: Jquery value of checkbox always return on

    下一篇: How do I check if checkbox is selected