Atualizado 5 de setembro de 2010
Visto que todo mundo parece ser direcionado aqui para esse problema, estou adicionando minha resposta a uma pergunta semelhante, que contém o mesmo código que esta resposta, mas com o histórico completo para aqueles que estão interessados:
O document.selection.createRange do IE não inclui linhas em branco à esquerda ou à direita
A explicação de quebras de linha à direita é complicada no IE, e não vi nenhuma solução que faça isso corretamente, incluindo outras respostas a essa pergunta. É possível, no entanto, usar a seguinte função, que retornará o início e o final da seleção (que são iguais no caso de um sinal de intercalação) dentro de um <textarea>
texto ou<input>
.
Observe que a área de texto deve ter foco para que essa função funcione corretamente no IE. Em caso de dúvida, chame o focus()
método da área de texto primeiro.
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
};
}