diff --git a/app/static/js/highlight.js b/app/static/js/highlight.js index 5ef3f3c..008f71e 100644 --- a/app/static/js/highlight.js +++ b/app/static/js/highlight.js @@ -28,9 +28,10 @@ function highLight() { if (sel_word1 != null) { const list = sel_word1.value.split(" "); for (let i = 0; i < list.length; ++i) { - list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); + list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); //消除字符串两边空字符 if (list[i] !== "" && "".indexOf(list[i]) === -1 && "".indexOf(list[i]) === -1) { - txt = txt.replace(new RegExp(list[i], "g"), "" + list[i] + ""); + //将正则表达式进行修改 表示搜索的是两端带有空格的list[i] 那么搜索的便为一个完整单词 然后在mark标签的前后各加了一个空格对其进行替换 + txt = txt.replace(new RegExp("\\s"+list[i]+"\\s", "g"), " " + list[i] + " "); } } } @@ -39,7 +40,8 @@ function highLight() { for (let i = 0; i < list2.length; ++i) { list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); if (list2[i] !== "" && "".indexOf(list2[i]) === -1 && "".indexOf(list2[i]) === -1) { - txt = txt.replace(new RegExp(list2[i], "g"), "" + list2[i] + ""); + //将正则表达式进行修改 表示搜索的是两端带有空格的list2[i] 那么搜索的便为一个完整单词 然后在mark标签的前后各加了一个空格对其进行替换 + txt = txt.replace(new RegExp("\\s"+list2[i]+"\\s", "g"), " " + list2[i] + " "); } } } @@ -91,4 +93,4 @@ function ChangeHighlight() { } } -showBtnHandler(); \ No newline at end of file +showBtnHandler();