如果放置光标,我想在光标位置的 textarea 中插入文本,否则文本应附加在 IE 中现有文本的末尾。
我已经使用了这个函数,它在 Mozilla 中运行良好,但在它附加到现有文本的起始位置时却没有。
function insertAtCursor(text) {
var field = document.frmMain.Expression;
if (document.selection) {
field.focus();
sel = document.selection.createRange();
sel.text = text;
}
}
如果没有放置光标,我想在现有文本的末尾附加文本。