Skip to content

Instantly share code, notes, and snippets.

@wangwen1220
Created January 4, 2014 01:43
Show Gist options
  • Save wangwen1220/8250377 to your computer and use it in GitHub Desktop.
Save wangwen1220/8250377 to your computer and use it in GitHub Desktop.
JS: 实时监听输入框值变化的完美方案 | oninput onpropertychange
$('textarea').bind('input propertychange', function() {
$('.msg').html($(this).val().length + ' characters');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment