实时监听输入框值变化:oninput & onpropertychange

$('textarea').bind('input propertychange', function() {
    $('div').html($(this).val().length);
});
cssfirefly http://cssfirefly.cnblogs.com
原文地址:https://www.cnblogs.com/cssfirefly/p/4126482.html