204

这是我的代码:

$("#product1 :checkbox").click(function(){
    $(this)
        .closest('tr') // Find the parent row.
            .find(":input[type='text']") // Find text elements in that row.
                .attr('disabled',false).toggleClass('disabled') // Enable them.
                .end() // Go back to the row.
            .siblings() // Get its siblings
                .find(":input[type='text']") // Find text elements in those rows.
                .attr('disabled',true).removeClass('disabled'); // Disable them.
});

如何切换.attr('disabled',false);

我似乎在 Google 上找不到它。

4

6 回答 6

486
$('#el').prop('disabled', function(i, v) { return !v; });

.prop()方法接受两个参数:

  • 属性名称(已禁用、已选中、已选择)任何真或假
  • 属性,可以是:
    • ( empty ) - 返回当前值。
    • boolean (true/false) - 设置属性值。
    • function - 对每个找到的元素执行,返回值用于设置属性。传递了两个参数;第一个参数是索引(0、1、2,每个找到的元素都会增加)。第二个参数是元素的当前(真/假)。

所以在这种情况下,我使用了一个函数,它为我提供了索引 (i) 和当前值 (v),然后我返回了与当前值相反的值,所以属性状态是相反的。

于 2012-02-28T20:43:15.127 回答
103

获得完整的浏览器可比性disabled应该由值设置disabled或被删除!
这是我刚刚制作的一个小插件:

(function($) {
    $.fn.toggleDisabled = function() {
        return this.each(function() {
            var $this = $(this);
            if ($this.attr('disabled')) $this.removeAttr('disabled');
            else $this.attr('disabled', 'disabled');
        });
    };
})(jQuery);

示例链接

编辑:更新了示例链接/代码以保持可链接性!
编辑 2:
基于@lonesomeday 评论,这是一个增强版本:

(function($) {
    $.fn.toggleDisabled = function(){
        return this.each(function(){
            this.disabled = !this.disabled;
        });
    };
})(jQuery);
于 2011-01-15T20:55:04.707 回答
21
    $('#checkbox').click(function(){
        $('#submit').attr('disabled', !$(this).attr('checked'));
    });

于 2012-07-24T08:53:51.297 回答
8

单击复选框即可更新的另一个简单选项。

HTML:

<input type="checkbox" id="checkbox/>
<input disabled type="submit" id="item"/>

jQuery:

$('#checkbox').click(function() {
    if (this.checked) {
        $('#item').prop('disabled', false); // If checked enable item       
    } else {
        $('#item').prop('disabled', true); // If checked disable item                   
    }
});

实际操作:链接

于 2017-11-25T15:42:34.413 回答
3

过了一会儿,感谢@arne,我创建了这个类似的小函数来处理输入应该被禁用和隐藏,或启用和显示:

function toggleInputState(el, on) {
  // 'on' = true(visible) or false(hidden)
  // If a field is to be shown, enable it; if hidden, disable it.
  // Disabling will prevent the field's value from being submitted
  $(el).prop('disabled', !on).toggle(on);
}

然后使用以下方法简单地切换一个 jQuery 对象(例如 $('input[name="something"]') ):

toggleInputState(myElement, myBoolean)
于 2017-08-08T21:44:49.910 回答
1

使用以下回调语法,这相当简单attr

$("#product1 :checkbox").click(function(){
  $(this)
   .closest('tr') // find the parent row
       .find(":input[type='text']") // find text elements in that row
           .attr('disabled',function(idx, oldAttr) {
               return !oldAttr; // invert disabled value
           })
           .toggleClass('disabled') // enable them
       .end() // go back to the row
       .siblings() // get its siblings
           .find(":input[type='text']") // find text elements in those rows
               .attr('disabled',function(idx, oldAttr) {
                   return !oldAttr; // invert disabled value
               })
               .removeClass('disabled'); // disable them
});
于 2011-01-15T20:43:18.207 回答