Max characters in textarea with jquery

前端 未结 16 1800
逝去的感伤
逝去的感伤 2020-12-03 04:53

I have the following code, and I\'m kind of stuck on what to do next. The idea is when you enter text into a text area a counter tells you how many characters you have left.

16条回答
  •  Happy的楠姐
    2020-12-03 05:20

    try this.

    var charLmt = "200";//max charterer 
     $("#send-txt").keydown(function(){
       var _msgLenght = $(this).val().length;
       if (_msgLenght > charLmt) {
       $(this).val($(this).val().substring(0, charLmt));
      }
    });
    

提交回复
热议问题