Examples are as follows:
function insertAtCursor(myField, myValue) { //IE browser if () { (); sel = (); = myValue; (); } //FireFox, Chrome, etc. else if ( || == '0') { var startPos = ; var endPos = ; // Save the scrollbar var restoreTop = ; = (0, startPos) + myValue + (endPos, ); if (restoreTop > 0) { = restoreTop; } (); = startPos + ; = startPos + ; } else { += myValue; (); } } <textarea style="width: 386px; height: 260px"> </textarea> <input type="text" /> <input type="button" value="insert" onclick="insertAtCursor(('textarea'),('text').value)" />
The above simple example of inserting content in the specified location of the text by JS is all the content I share with you. I hope you can give you a reference and I hope you can support me more.