Sto provando a selezionare / deselezionare tutte le caselle usando jQuery. Ora selezionando / deselezionando la casella di controllo padre tutte le caselle di controllo figlio vengono selezionate / deselezionate anche con il testo della casella di controllo padre che viene cambiato in checkall / uncheckall.
Ora voglio sostituire la casella di controllo padre con un pulsante di input e modificare il testo anche sul pulsante per selezionare / deselezionare. C'è il codice, qualcuno può modificare il codice, per favore?
$( 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() {
$( '.cb-element' ).length == $( '.cb-element:checked' ).length ? $( '.checkAll' ).attr( 'checked', 'checked' ).next().text( 'Uncheck All' ) : $( '.checkAll' ).attr( 'checked', '' ).next().text( 'Check All' );
});
});
<input type="checkbox" class="checkAll" /> <b>Check All</b>
<input type="checkbox" class="cb-element" /> Checkbox 1
<input type="checkbox" class="cb-element" /> Checkbox 2
<input type="checkbox" class="cb-element" /> Checkbox 3