我想在启用或禁用输入时执行一个方法。可以在jQuery中做吗?
我想做与此类似的事情(non-working code below
):-
$('input').on('enabled', function(e){
alert( 'Just now someone enabled : ' + $(this).attr('id') );
executeSomeHandlerForENABLED();
}).on('disabled', function(e){
alert( 'Just now someone disabled : ' + $(this).attr('id') );
executeSomeHandlerForDISABLED();
});