首先是
the fiddle。
$('#enableButtonB').click(function (e) { if($(e.target).is(':checked')) { $('#myButtonB').removeProp('disabled'); alert('Enable Button B'); } else { $('#myButtonB').prop('disabled',true); alert('Disable Button B'); } });
我试图使用jQuery的.prop()和removeProp()方法来启用和禁用基于某些条件的按钮。在元素上调用removeProp()后,它似乎工作正常。之后任何后续的对prop()的调用无法禁用按钮。
什么是反复启用和禁用元素的正确方法?