Javascript inserts text at the TextArea cursor position and moves the cursor to the end of the text _ javascript skills

Source: Internet
Author: User
JS inserts text + moves the cursor to the end of the text at the cursor position of TextArea. Firefox, Chrome, Safari, and Opera all have the selectionStart and selectionEnd attributes. The specific implementation is as follows, if you are interested, refer to the document supported by HA = IE. selection
= Firefox, Chrome, Safari, and Opera all have the selectionStart and selectionEnd attributes.

The Code is as follows:


Function insertText (obj, str ){
If (document. selection ){
Var sel = document. selection. createRange ();
Sel. text = str;
} Else if (typeof obj. selectionStart = 'number' & typeof obj. selectionEnd = 'number '){
Var startPos = obj. selectionStart,
EndPos = obj. selectionEnd,
CursorPos = startPos,
TmpStr = obj. value;
Obj. value = tmpStr. substring (0, startPos) + str + tmpStr. substring (endPos, tmpStr. length );
CursorPos + = str. length;
Obj. selectionStart = obj. selectionEnd = cursorPos;
} Else {
Obj. value + = str;
}
}
Function moveEnd (obj ){
Obj. focus ();
Var len = obj. value. length;
If (document. selection ){
Var sel = obj. createTextRange ();
Sel. moveStart ('character ', len );
Sel. collapse ();
Sel. select ();
} Else if (typeof obj. selectionStart = 'number' & typeof obj. selectionEnd = 'number '){
Obj. selectionStart = obj. selectionEnd = len;
}
}


The Code is as follows:




The Code is as follows:


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.