Limit number of characters in input field

前端 未结 9 881
Happy的楠姐
Happy的楠姐 2020-11-30 12:28

I want to use jquery to limit the number of characters in an editable div (or form input).

9条回答
  •  天涯浪人
    2020-11-30 12:50

    $('#id').keypress(function(e) {
       var foo = $(this).val()
       if (foo.length >= 14) { //specify text limit
         return false;
       }
       return true;
    });
    

提交回复
热议问题