我使用下面的函數插入文本光標所在:插入文本
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);
}
}
然後,我有:
然而,當我點擊跨度,文本不會附加到contenteditable(因爲它失去了焦點),而是在其內部。
我該如何解決這個問題?我需要將文本插入到光標所在的contenteditable內,如果光標不在那裏,那麼文本應該追加在contenteditable文本的末尾。
的jsfiddle鏈接無法正常工作,請調查一下。 –
如果工作正常,我不會在這裏發佈。 – enb081
我覺得這是你的目標:http://stackoverflow.com/questions/2213376/how-to-find-cursor-position-in-a-contenteditable-div – mauretto