TextArea Maximum Length?
问题 Is it possible to set the maximum length of text in a TextArea ? 回答1: If you are using jQuery, use this plugin http://www.stjerneman.com/demo/maxlength-with-jquery 回答2: Something interesting is that HTML5 have added the feature of maxlength to textarea, if HTML5 is something you are ok to use right now. W3C official documentation Demo: <textarea maxlength="20"></textarea> 回答3: You can use following format in HTML <input type="text" maxlength="13"> 回答4: This solution is re-usable for all text