Explain the strange performance of maxlength attributes in textarea, maxlengthtextarea

Source: Internet
Author: User
Tags truncated

Explain the strange performance of maxlength attributes in textarea, maxlengthtextarea

HTML5 has brought a lot of changes to the form. For example, the maxlength to be introduced today can be used to limit the maximum number of characters entered in the input box, more conveniently, the pasted content can be automatically truncated based on the number of characters.

Recently, this requirement was met. Users can enter up to 600 characters (Chinese characters and letters are not differentiated), and the pasted content must be automatically truncated. After Entering 600 words, users cannot enter the content.

The first time I thought of maxlength, it basically met the needs, but there was still some weird performance.

See the following code:

<textarea name="text" id="text" maxlength="600"></textarea><p><span id="already"></span>/<span>600</span></p>text.oninput = function() {  already.textContent = text.value.length;}

In the above Code, the number of input characters is limited to 600, and the oninput is used to listen to user input, keydown is not used, because keydown can only listen to user keyboard input, and does not respond to pasting... Oninput can be used.

At this time, after entering 600 words directly, you can no longer enter, delete some, and then enter some, which is normal. It is strange that if you paste a lot of text into textarea and think that maxlength is automatically truncated, there are exactly 600 characters in textarea. At this time, you delete some characters and then try to input them again, you will find:

Enter a slot !!! If you want to delete more files, you can enter more files, !!! When the number of characters entered is less than 600 characters, it suddenly cannot be entered !!!

In chrome and on my android devices .. I do not know why. If input is tested, this will not happen, and if the value of the maxlength attribute is smaller, this will not happen, for example, 10...

In this case, maxlength is unreliable. Write more code on your own. Since oninput is so flexible, use it.

Modify the code, remove the maxlength attribute of textarea, and use input to listen to the value of textarea. If the value exceeds 600, it is automatically truncated, resulting in the illusion that the input cannot be entered.

text.oninput = function() {  if(text.value.length >= 600) {    text.value = text.value.substr(0,600);  }  already.textContent = text.value.length;}

If you are not at ease, you can continue to listen to the keydown event and stop the default event after entering more than 600 characters. However, there are several keys that cannot be banned: Delete the return and press Enter:

Text. onkeydown = function () {if (text. value. length> = 600) {// Delete: 46 Return: 8 press Enter: 13 if (! (E. which = '46' | e. which = '8' | e. which = '13') {e. preventDefault ();}}}

IE8 or lower does not support the maxlength attribute or oninput, but they have a more powerful method: onpropertychange.

The following code explains how textarea implements the maxlength attribute.

<script language="javascript" type="text/javascript"> function textlen(x,y){  var thelength = x.value.length;  window.status=thelength+' of '+y+' maximum characters.'; } function maxtext(x,y){  tempstr = x.value  if(tempstr.length>y){   x.value = tempstr.substring(0,y);  }  textlen(x,y); } </script> <form name="myform">    <textarea name="mytextarea"                cols="45"                rows="3"                wrap="virtual"                onkeypress="return(this.value.length<20)"               onkeydown="textlen(this,20)"                onkeyup="textlen(this,20)"                onblur="maxtext(this,20)">   </textarea> </form> 

Articles you may be interested in:
  • JQuery code for adding the maxlength attribute to textarea
  • TextArea does not support maxlength (jquery)
  • Js Code for setting the maximum input value of the MaxLength attribute in TextArea
  • JQuery adds the maxlength attribute for textarea and is compatible with IE
  • Textarea cannot use the maxlength attribute to limit the number of words

Related Article

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.