JS limit the number of text boxes textarea

Source: Internet
Author: User

Now tweet, that text box can only input 200 words as if, then more will be automatically deleted, or prompt word limit, with JS can realize this function. Today brought this JS limit form text box text number of examples, I believe there is a good reference to this aspect. For ease of use, the code is split into HTML form sections and JavaScript code sections:

HTML Form section, the code is as follows:

<formname=myformAction=""><textareaname= "message"Wrap= "Physical"cols= "+"rows= "4"OnKeyDown= "Textcounter (this.form.message,this.form.remlen,125);"onKeyUp= "Textcounter (this.form.message,this.form.remlen,125);"></textarea><BR>You can also enter<inputreadonly Type= "text"name= "Remlen"size= "4"maxlength= "3"value= " the">of characters</Div></form>

JavaScript code section:

<script language= "JavaScript" >function  textcounter (field, Countfield, maxlimit) {//  define functions, pass in 3 parameters, respectively, form name, form field element name, character limit if (Field.value.length > maxlimit)// if the number of elements in the element area is greater than the maximum number of characters, field.value = field.value.substring (0, Maxlimit) is truncated by maximum character number; Else // displays the number of remaining characters that can be entered within the form page text box countfield.value = maxlimit- field.value.length;} </SCRIPT>

Note: Two pieces of code can be copied to the same page.

JS limit the number of text boxes textarea

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.