JavaScript: Get focus after the last text in a text box

Source: Internet
Author: User

//after you lose the intersection, let the text in the TextBox get focus and the cursor moves behind the last word  functionMyfocus (myID) {if(Isnav) {document.getElementById (myID). focus ();//Get Focus      }Else{Setfocus.call (document.getElementById (myID)); }  }  varIsnav = (Window.navigator.appName.toLowerCase (). IndexOf ("Netscape") >=0); varIsie = (Window.navigator.appName.toLowerCase (). IndexOf ("Microsoft") >=0); functionSetFocus () {varRange = This. createTextRange ();//Create a text selectionRange.movestart (' character ', This. value.length);//the beginning of the selection is moved to the last .Range.collapse (true);  Range.Select (); }

The focus () function in jquery automatically moves the cursor to the end of the content when the object receives focus

jquery gets the focus after the cursor after the string, when input gets focus, automatically moves the cursor to the end of the text content, jquery uses focus () to give the text input box focus and focus on the right side of the text method

  //var t=$ ("#" + ID). val ();  $ (

JavaScript: Get focus after the last text in a text box

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.