Questions tagged «uncheck»

23
如何使用jQuery使用按钮来选中/取消选中所有复选框?
我正在尝试使用jQuery选中/取消选中所有复选框。现在,通过选中/取消选中父复选框,所有子复选框也将被选中/取消选中,父复选框的文本也将变为checkall / uncheckall。 现在,我想用输入按钮替换父复选框,然后将按钮上的文本也更改为checkall / uncheckall。这是代码,任何人都可以调整代码吗? $( function() { $( '.checkAll' ).live( 'change', function() { $( '.cb-element' ).attr( 'checked', $( this ).is( ':checked' ) ? 'checked' : '' ); $( this ).next().text( $( this ).is( ':checked' ) ? 'Uncheck All' : 'Check All' ); }); $( '.cb-element' ).live( 'change', function() …
158 jquery  checkbox  uncheck 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.