我尝试从内容可编辑div内插入符号位置的上下文菜单中选择后插入令牌。如果插入符位置在一行中,我就可以做到这一点。
在我的情况下,只要其他HTML标记(即行更改)出现,范围偏移值就会设置为0。我正在使用这两个函数来获取我在stackoverflow中某个地方找到的范围。
感谢您的帮助!
<addUniqueConstraint
columnNames="PERSON_ID" tableName="PERSON_ADDRESS"
constraintName="UK_PHONE_NUMBERS_ID" />
答案 0 :(得分:1)
我认为问题不在于元素contenteditable
中没有内容行。如前所述,因为您正在将上下文菜单与contenteditable
div
一起使用。而且,当您单击上下文菜单时,它将获得该上下文菜单的范围值。
因此,您应该在单击某些菜单之前将范围值存储在某些变量中。
由于您的代码不完整,因此我无法将任何示例与您的代码联系起来。
这里有一个例子希望对您有所帮助:
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);
}
}
<input type="button" value="Paste HTML" onclick="document.getElementById('test').focus(); pasteHtmlAtCaret('<b>INSERTED</b>'); ">
<div id="test" contenteditable="true">
Here is some nice text
</div>