“Selection object represents the range of text selected by the user or the current position of the caret”那么如何根据插入符号的当前位置选择文本?
答案 0 :(得分:0)
您需要使用addRange创建范围并将其添加到选区中。
代码示例:
const sel = window.getSelection();
const range = document.createRange();
range.setStart(0, currentPos);
sel.addRange(range);