参考链接:https://segmentfault.com/q/1010000017101606/a-1020000017103333
tagContent(){ let selection = window.getSelection();//获取选中内容 var elInput = document.getElementById('summaryInsert');//获取dom var startPos = elInput.selectionStart;//光标起始位置 var endPos = elInput.selectionEnd;//光标结束位置 if (startPos === undefined || endPos === undefined || endPos==startPos) return;//如果光标起始位置和结束位置相等,表示没有选中内容,跳出方法 var beforeWords = this.modalInfo.summary.substring(0,startPos);//截取到的之前的文字 var afterWords = this.modalInfo.summary.substring(endPos,this.modalInfo.length);//截取到的之后的文字 this.modalInfo.summary = beforeWords + '<strong>' + selection + '</strong>' + afterWords;//截取到的之前的文字+选中内容+截取到的之后的文字组合 },