textarea支持复制粘贴的文本计数器

来源:互联网 发布:安卓 记账软件 编辑:程序博客网 时间:2024/05/17 01:44
     function statInputNum( textArea, numItem ) {
 var max = textArea.attr( "maxlength");
 var curLength=0;
 curLength = textArea.val()
   .length;
 
 numItem.text(max-curLength);
 textArea.on( 'input propertychange', function () {
   var _value = $( this )
     .val()
     .replace( /\n/gi, "" );
    numItem.text( max - _value.length );
 } );
}
text1.on('focus',function(){
statInputNum(text1,len1)

  })


<textarea type="text" style="border:1px solid  #d5d3d3;" class="input" id="operatingIncome" maxlength="50" placeholder="请输入其他经营收入"></textarea>

 <div class="tooltip"><span id="operatingIncomeNumber">50</span>/50</div>

原创粉丝点击