อัปเดตเมื่อ 5 กันยายน 2553
เมื่อเห็นว่าทุกคนดูเหมือนจะถูกนำมาที่นี่สำหรับปัญหานี้ฉันกำลังเพิ่มคำตอบของคำถามที่คล้ายกันซึ่งมีรหัสเดียวกันกับคำตอบนี้ แต่มีพื้นฐานเต็มรูปแบบสำหรับผู้ที่สนใจ:
document.selection.createRange ของ IE นั้นไม่มีบรรทัดว่างนำหน้าหรือต่อท้าย
ในการบัญชีสำหรับการแบ่งบรรทัดต่อท้ายนั้นมีความยุ่งยากใน IE และฉันไม่เห็นวิธีแก้ปัญหาใด ๆ ที่ทำได้อย่างถูกต้องรวมถึงคำตอบอื่น ๆ สำหรับคำถามนี้ อย่างไรก็ตามเป็นไปได้โดยใช้ฟังก์ชั่นต่อไปนี้ซึ่งจะคืนค่าเริ่มต้นและจุดสิ้นสุดของการเลือกของคุณ (ซึ่งจะเหมือนกันในกรณีของคาเร็ต) ภายใน<textarea>
ข้อความหรือ<input>
หรือข้อความ
โปรดทราบว่า textarea ต้องมีโฟกัสเพื่อให้ฟังก์ชันนี้ทำงานอย่างถูกต้องใน IE หากมีข้อสงสัยให้เรียกfocus()
วิธีการของ 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
};
}