From d8a524eca2950d6837bda086155f5d423f3057dd Mon Sep 17 00:00:00 2001 From: Guarp Date: Mon, 24 Feb 2025 22:16:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=A8=E7=A6=BB=E5=BC=80?= =?UTF-8?q?=E7=95=99=E8=A8=80=E6=9D=BF=E5=90=8E=E8=87=AA=E5=8A=A8=E5=88=B7?= =?UTF-8?q?=E6=96=B0=E4=BB=8D=E7=84=B6=E5=B7=A5=E4=BD=9C=E7=9A=84bug=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=96=E8=BE=91=E5=99=A8=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E7=BC=A9=E8=BE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Editor.vue | 11 +++++++++-- src/pages/demoPages/messageBoard/Board_page.vue | 5 +++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index d4cd13c..fa56d19 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -33,7 +33,7 @@ function clickFuncBtn(func) { const startPos = textarea.selectionStart; // 获取焦点的起始位置 const endPos = textarea.selectionEnd; // 获取焦点的结束位置 const selectedText = textarea.value.slice(startPos, endPos); // 获取选中的文本 - let newText = ''; + let newText; if (selectedText) { newText = func.replace('[cur]', selectedText); } else { @@ -123,12 +123,13 @@ let autoSave onUnmounted(() => { clearInterval(autoSave); + autoSave = undefined; window.removeEventListener('keydown', handleKeydown); });