输入框实时更新

$("input:text").bind("input propertychange",function(){

  console.log($(this).val().length);//打印输入框字符长度
 
});

原文地址:https://www.cnblogs.com/tutao1995/p/9817743.html