我使用以下函数插入光标所在的文本:
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内。
答案 0 :(得分:1)
老实说,最快的解决方案是在输入按钮上使用CSS,使其看起来像任何跨度应该是。快速又脏,但它有效......
答案 1 :(得分:0)
在div中的整个过程中跟踪光标位置。因此,当用户离开它时,您仍然保存了光标位置,因此它将文本放在光标所在的位置。如果需要代码,请询问。