我正在使用以下函数在光标所在的位置插入文本:
function pasteHtmlAtCaret(html) {
var sel, range;
if (window.getSelection) {
// IE9 and non-IE
sel = window.getSelection();
if (sel.getRangeAt && sel.rangeCount) {
range = sel.getRangeAt(0);
range.deleteContents();
// Range.createContextualFragment() would be useful here but is
// non-standard and not supported in all browsers (IE9, for one)
var el = document.createElement("div");
el.innerHTML = html;
var frag = document.createDocumentFragment(), node, lastNode;
while ((node = el.firstChild)) {
lastNode = frag.appendChild(node);
}
range.insertNode(frag);
// Preserve the selection
if (lastNode) {
range = range.cloneRange();
range.setStartAfter(lastNode);
range.collapse(true);
sel.removeAllRanges();
sel.addRange(range);
}
}
} else if (document.selection && document.selection.type != "Control") {
// IE < 9
document.selection.createRange().pasteHTML(html);
}
}
然后我有:
$("span").click(function() {
pasteHtmlAtCaret("Some <b>random</b> text");
});
但是,当我单击跨度时,文本不会附加在 contenteditable 中(因为它失去了焦点),而是附加在自身中。
我怎样才能解决这个问题?我需要在光标所在的 contenteditable 内插入文本,如果光标不存在,则文本应附加在 contenteditable 内文本的末尾。