Por que obter uma seleção de texto da área de texto funciona quando um botão é clicado, mas não quando uma “div” é clicada (no Internet Explorer)
Considere o seguinte código: Live demo here - Abra no Internet Explorer 7 ou 9)
HTML:
<textarea>Hello Stack Overflow</textarea>
<input class="a" type="button" value="Click here does the job" />
<div class="a">But clicking here not :(</div>
JS:
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};
}
function getselection() {
var selectedText = getInputSelection($("textarea")[0]);
var start = selectedText.start;
var end = selectedText.end;
alert("Start: " + start + ", End: " + end);
}
$(".a").click(getselection);
OgetInputSelection()
função @ é retirada deaqu.
Por alguma razão, quando o<div>
é clicado, o resultado é sempre:
Start: 0, End: 0
Alguma idéia de como consertar iss