How to control the length of characters entered in textarea

Source: Internet
Author: User

<HTML>    <Head>    <title>Controlling input character length in textarea</title>    </Head><Body>    <textareaname= "Content"cols= "$"rows= "6"onkeydown= "if (this.value.length > Event.returnvalue) = false"></textarea></Body></HTML>

The above code through the onkeydown event, when the input character length exceeds 140, set Event.returnvalue to False, this property can be canceled in the event handler to call the function of the default action.

  

<HTML><Head>    <title>Controlling input character length in textarea</title></Head><Body>    <form>        <textareaname= "Content"cols= "$"rows= "6"onkeyup= "if (this.value.length > This.value) = this.value.substr (0,140)"></textarea>    </form></Body></HTML>

Here through the onkeyup can also control the input string length of not more than 140, but the processing does not have the above way good, here will first show the user input of all content, and then to intercept, the content will be more than the first to delete, the effect is not very good

How to control the length of characters entered in 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.