找出在真实浏览器中选择的内容非常简单:
var range = {
start: textbox.selectionStart,
end: textbox.selectionEnd
}
但IE,像往常一样,不明白。什么是最好的跨浏览器方式?
答案 0 :(得分:22)
我会再发布一次这个函数,因为这个问题与另一个问题有关。
以下内容将在所有浏览器中完成,并处理所有新的线路问题,而不会严重影响性能。我在some toing and froing之后到达了这里,现在我非常相信这是最好的这种功能。
<强>更新强>
此函数确实假设textarea / input具有焦点,因此您可能需要在调用之前调用textarea的focus()
方法。
function getInputSelection(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_input");
el.focus();
var sel = getInputSelection(el);
alert(sel.start + ", " + sel.end);
答案 1 :(得分:7)
IE的Range实现是一个简单的恐怖。它真的希望你使用execrable execCommand接口而不是任何涉及索引到文本中的东西。
我知道有两种获取指数的方法,它们都有问题。第一个使用range.text,如示例代码中所示。不幸的是,range.text习惯于剥离前导和尾随换行符,这意味着如果插入符号/选择位于除第一行之外的行的开头,则之前的长度将取消(换行符数* 2)字符和你将得到错误的选定文本。
第二种方法是使用range.moveStart / End(在重复范围内),如此问题的答案中所述:Character offset in an Internet Explorer TextRange(但是当您使用已知的textarea父级时,您可以忽略这些内容关于节点查找)。这没有相同的问题,但它确实报告所有索引,好像换行是简单的LF字符,即使textarea.value和range.text将它们作为CRLF序列返回!所以你不能直接使用它们来索引textarea,但是你可以用一堆换行计数来修复它们,或者在你使用它之前从字符串中替换掉所有的CR。
答案 2 :(得分:6)
我目前的解决方案是详细的,基于this thread,但我愿意接受更好的解决方案。
function getSelection(inputBox) {
if ("selectionStart" in inputBox) {
return {
start: inputBox.selectionStart,
end: inputBox.selectionEnd
}
}
//and now, the blinkered IE way
var bookmark = document.selection.createRange().getBookmark()
var selection = inputBox.createTextRange()
selection.moveToBookmark(bookmark)
var before = inputBox.createTextRange()
before.collapse(true)
before.setEndPoint("EndToStart", selection)
var beforeLength = before.text.length
var selLength = selection.text.length
return {
start: beforeLength,
end: beforeLength + selLength
}
}
答案 3 :(得分:0)
function getCursorPosition($element) {
var position = 0,
selection;
if (document.selection) {
// IE Support
$element.focus();
selection = document.selection.createRange();
selection.moveStart ('character', -$element.value.length);
position = selection.text.length;
} else if ($element.selectionStart || $element.selectionStart === 0) {
position = $element.selectionStart;
}
return position;
}
function setCursorPosition($element, position) {
var selection;
if (document.selection) {
// IE Support
$element.focus ();
selection = document.selection.createRange();
selection.moveStart ('character', -$element.value.length);
selection.moveStart ('character', position);
selection.moveEnd ('character', 0);
selection.select ();
} else if ($element.selectionStart || $element.selectionStart === 0) {
$element.selectionStart = position;
$element.selectionEnd = position;
$element.focus ();
}
}