一、问题描述
使用v-model绑定的textarea如果需要改变其内容,一般只要改变v-model对应的变量即可,但如果需要在textarea的当前光标位置插入指定文本,那就需要操作DOM了。于是我们写了一段js:
const insertTextAtCursor = (text) => {const textarea = document.querySelector('textarea')if (textarea) {const startPos = textarea.selectionStartconst endPos = textarea.selectionEndconst value = textarea.valueconst beforeText = value.substring(0, startPos)const afterText = value.substring(endPos, value.length)const newValue = beforeText + text + afterTexttextarea.value = newValuetextarea.selectionStart = textarea.selectionEnd = startPos + text.length}
}
但如果直接调用上述代码的insertTextAtCursor
函数,就会发现一些古怪的现象,比如下面点击[插入客户昵称]
,就会在textarea的当前光标处插入指定文本,但实际插入却不理想:
二、解决方案
上述问题产生的原因跟textarea.value
与v-model直接产生了冲突,于是只要改一下代码:
const insertTextAtCursor = (text) => {const textarea = document.querySelector('textarea')if (textarea) {const startPos = textarea.selectionStartconst endPos = textarea.selectionEndconst value = textarea.valueconst beforeText = value.substring(0, startPos)const afterText = value.substring(endPos, value.length)const newValue = beforeText + text + afterTextform.value.next_visit_content = newValuenextTick(() => {textarea.selectionStart = textarea.selectionEnd = startPos + text.length})}
}