gpt4 book ai didi

javascript - IE 的 document.selection.createRange 不包括前导或尾随空行

转载 作者:数据小太阳 更新时间:2023-10-29 04:29:26 36 4
gpt4 key购买 nike

我正在尝试从文本区域中提取准确的选择和光标位置。像往常一样,在大多数浏览器中容易的事情在 IE 中并不容易。

我正在使用这个:

var sel=document.selection.createRange();
var temp=sel.duplicate();
temp.moveToElementText(textarea);
temp.setEndPoint("EndToEnd", sel);
selectionEnd = temp.text.length;
selectionStart = selectionEnd - sel.text.length;

99% 的时间都有效。问题是 TextRange.text 不返回前导或尾随换行符。因此,当光标位于段落之后的几个空行时,它会在前一段的末尾产生一个位置 - 而不是实际的光标位置。

例如:

the quick brown fox|    <- above code thinks the cursor is here

| <- when really it's here

我能想到的唯一解决方法是在选择前后临时插入一个字符,抓取实际选择,然后再次删除这些临时字符。这是一个 hack,但在快速实验中看起来它会起作用。

但首先我想确定没有更简单的方法。

最佳答案

我正在添加另一个答案,因为我之前的答案已经有些史诗了。

这是我认为最好的版本:它采用了 bobince 的方法(在我的第一个答案的评论中提到)并修复了我不喜欢它的两件事,首先是它依赖于偏离的 TextRanges在文本区域之外(因此会损害性能),其次,必须为移动范围边界的字符数选择一个巨大的数字是很脏的。

function getSelection(el) {
var start = 0, end = 0, normalizedValue, range,
textInputRange, len, endRange;

if (typeof el.selectionStart == "number" && typeof el.selectionEnd == "number") {
start = el.selectionStart;
end = el.selectionEnd;
} else {
range = document.selection.createRange();

if (range && range.parentElement() == el) {
len = el.value.length;
normalizedValue = el.value.replace(/\r\n/g, "\n");

// Create a working TextRange that lives only in the input
textInputRange = el.createTextRange();
textInputRange.moveToBookmark(range.getBookmark());

// Check if the start and end of the selection are at the very end
// of the input, since moveStart/moveEnd doesn't return what we want
// in those cases
endRange = el.createTextRange();
endRange.collapse(false);

if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
start = end = len;
} else {
start = -textInputRange.moveStart("character", -len);
start += normalizedValue.slice(0, start).split("\n").length - 1;

if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) {
end = len;
} else {
end = -textInputRange.moveEnd("character", -len);
end += normalizedValue.slice(0, end).split("\n").length - 1;
}
}
}
}

return {
start: start,
end: end
};
}

var el = document.getElementById("your_textarea");
var sel = getSelection(el);
alert(sel.start + ", " + sel.end);

关于javascript - IE 的 document.selection.createRange 不包括前导或尾随空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3622818/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com