5 सितंबर 2010 को अपडेट किया गया
यह देखते हुए कि इस मुद्दे के लिए सभी को यहां निर्देशित किया जा रहा है, मैं अपने उत्तर को एक समान प्रश्न के साथ जोड़ रहा हूं, जिसमें इस उत्तर के समान कोड है, लेकिन रुचि रखने वालों के लिए पूरी पृष्ठभूमि के साथ:
IE के document.selection.createRange में अग्रणी या खाली लाइनों को शामिल करना शामिल नहीं है
लाइन ब्रेकिंग के लिए आईई में मुश्किल है, और मैंने ऐसा कोई समाधान नहीं देखा है जो इसे सही ढंग से करता हो, जिसमें इस प्रश्न का कोई अन्य उत्तर भी शामिल है। हालाँकि, यह संभव है, निम्न फ़ंक्शन का उपयोग करते हुए, जो आपको एक <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
};
}