Html Span Checkbox Kontrolü
Html Span Checkbox Kontrolü Html Kodu: class =' inactive chkboxhandler ' onclick =' checkClick("Accounting") '> type =' checkbox ' id =' checkAccounting ' class =' chkbox ' name =' checkBoxes ' /> for =' checkAccounting '> Accounting string nameSpaces = Request.QueryString[ "NameSpaces" ]; List < string > nameSpaceList = new List < string >(); nameSpaceList = new List < string >(nameSpaces.Split( ',' )); JS Kodu: /*customchk*/ $( ".chkboxhandler" ).bind( "click" , function () { var _mychkBox = $( this ).find( ".chkbox" ); if (_mychkBox.is( ':checked' )) { $( this ).removeClass( 'active' ).addClass( 'inactive' ); $( this ).find( ".chkbox" ).attr( 'checked' , false ); } else { $( this ).removeClass( 'inactive' ).addClass( 'active' ); $( this )....