用下面的JavaScript代码,插入内容后格式都乱了,只能插入编辑框最顶部,如何在印象笔记编辑框的光标处插入内容?
function typeInTextarea(newText, el = document.activeElement) {
const start = el.selectionStart
const end = el.selectionEnd
const text = el.innerText
const before = text.substring(0, start)
const after = text.substring(end, text.length)
el.innerText = (before + newText + after)
el.selectionStart = el.selectionEnd = start + newText.length
el.focus()
}
document.execCommand("insertText", "false", text);