在内容可编辑的div中,我希望获取并设置光标位置,但不考虑子元素(例如 , 等)。
为了得到,我找到了这个解决方案:Get a range's start and end offset's relative to its parent container
但是我不知道。
请你能帮我吗?
谢谢你
答案 0 :(得分:1)
您可以使用rangy自己定义它,就像这样:
var selector = document.querySelector('[contenteditable]');
var setCaretIndex = function (index) {
var charIndex = 0, stop = {};
var traverseNodes = function (node) {
if (node.nodeType === 3) {
var nextCharIndex = charIndex + node.length;
if (index >= charIndex && index <= nextCharIndex) {
rangy.getSelection().collapse(node, index - charIndex);
throw stop;
}
charIndex = nextCharIndex;
}
// Count an empty element as a single character. The list below may not be exhaustive.
else if (node.nodeType === 1 && /^(input|br|img|col|area|link|meta|link|param|base)$/i.test(node.nodeName)) {
charIndex += 1;
} else {
var child = node.firstChild;
while (child) {
traverseNodes(child);
child = child.nextSibling;
}
}
};
try {
traverseNodes(selector);
} catch (ex) {
if (ex !== stop) throw ex;
}
};
要使用此功能,您需要先将编辑器聚焦:
selector.focus();
然后给出一个索引来设置光标位置:
setCaretIndex(3);