实时监听输入框值变化

  

转:http://www.cnblogs.com/lhb25/archive/2012/11/30/oninput-and-onpropertychange-event-for-input.html

 

 

$('textarea').bind('input propertychange', function() {



    $('.msg').html($(this).val().length + ' characters');



});

你可能感兴趣的:(监听)