ใน IE11 execCommand ทำงานได้ไม่ดี ฉันใช้โค้ดด้านล่างสำหรับ IE11
<div class="wmd-input" id="wmd-input-md" contenteditable=true>
คือกล่อง div ของฉัน
ฉันอ่านข้อมูลคลิปบอร์ดจาก window.clipboardData และแก้ไข textContent ของ div และให้คาเร็ต
ฉันให้หมดเวลาสำหรับการตั้งค่าคาเร็ตเพราะถ้าฉันไม่กำหนดระยะหมดเวลาเครื่องหมายคาเร็ตจะไปสิ้นสุดที่ div
และคุณควรอ่าน clipboardData ใน IE11 ด้วยวิธีด้านล่าง หากคุณไม่ทำเช่นนั้นคาแร็คเตอร์ของ newline จะไม่ได้รับการจัดการอย่างถูกต้องดังนั้นคาเร็ตจึงผิดพลาด
var tempDiv = document.createElement("div");
tempDiv.textContent = window.clipboardData.getData("text");
var text = tempDiv.textContent;
ทดสอบกับ IE11 และ chrome มันอาจไม่ทำงานบน IE9
document.getElementById("wmd-input-md").addEventListener("paste", function (e) {
if (!e.clipboardData) {
//For IE11
e.preventDefault();
e.stopPropagation();
var tempDiv = document.createElement("div");
tempDiv.textContent = window.clipboardData.getData("text");
var text = tempDiv.textContent;
var selection = document.getSelection();
var start = selection.anchorOffset > selection.focusOffset ? selection.focusOffset : selection.anchorOffset;
var end = selection.anchorOffset > selection.focusOffset ? selection.anchorOffset : selection.focusOffset;
selection.removeAllRanges();
setTimeout(function () {
$(".wmd-input").text($(".wmd-input").text().substring(0, start)
+ text
+ $(".wmd-input").text().substring(end));
var range = document.createRange();
range.setStart(document.getElementsByClassName("wmd-input")[0].firstChild, start + text.length);
range.setEnd(document.getElementsByClassName("wmd-input")[0].firstChild, start + text.length);
selection.addRange(range);
}, 1);
} else {
//For Chrome
e.preventDefault();
var text = e.clipboardData.getData("text");
var selection = document.getSelection();
var start = selection.anchorOffset > selection.focusOffset ? selection.focusOffset : selection.anchorOffset;
var end = selection.anchorOffset > selection.focusOffset ? selection.anchorOffset : selection.focusOffset;
$(this).text($(this).text().substring(0, start)
+ text
+ $(this).text().substring(end));
var range = document.createRange();
range.setStart($(this)[0].firstChild, start + text.length);
range.setEnd($(this)[0].firstChild, start + text.length);
selection.removeAllRanges();
selection.addRange(range);
}
}, false);