我有以下一段 JavaScript 用于将 unicode 字符(下面由 txtToIns 变量表示)动态插入到正文中
elmt.value = elmt.value.substring(0, elmt.selectionStart) + txtToIns + " " + elmt.value.substring(elmt.selectionStart, elmt.selectionEnd) + elmt.value.substring(elmt.selectionEnd, elmt.value.length) + " ";
elmt.focus();
elmt.value = elmt.value.trim();
使用上面的光标总是在文本的末尾。有什么办法可以将它直接放在 txtToIns 之后?不,txtToIns.focus() 不起作用