Aggiornato il 5 settembre 2010
Visto che tutti sembrano essere diretti qui per questo problema, sto aggiungendo la mia risposta a una domanda simile, che contiene lo stesso codice di questa risposta ma con uno sfondo completo per coloro che sono interessati:
Document.selection.createRange di IE non include righe vuote iniziali o finali
Prendere in considerazione le interruzioni di riga finali è complicato in IE e non ho visto alcuna soluzione che lo faccia correttamente, comprese altre risposte a questa domanda. È possibile, tuttavia, utilizzare la seguente funzione, che ti restituirà l'inizio e la fine della selezione (che sono gli stessi nel caso di un cursore) all'interno di un <textarea>
testo o <input>
.
Si noti che l'area di testo deve essere attiva affinché questa funzione funzioni correttamente in IE. In caso di dubbi, chiama focus()
prima il metodo textarea .
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
};
}