textarea输入字数提示

Posted z421

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea输入字数提示相关的知识,希望对你有一定的参考价值。

LimitedNnumber(‘.eventBox‘, ‘.viewBox‘, 50)

/*
* eventBox:输入框id或者class
* viewBox:提示元素id或者class
* textLength:限制长度
*/
function LimitedNnumber(eventBox, viewBox, textLength) {
   $(document).on(‘input propertychange paste keyup‘, eventBox, function(event){
      this.value = this.value.replace(this.value.slice(textLength), "")
      $(viewBox).html(this.value.length +"/"+ textLength)
   })
}

 

以上是关于textarea输入字数提示的主要内容,如果未能解决你的问题,请参考以下文章