el-input 给输入框选中内容前后添加标签,主要用substring字符串截取

参考链接: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;//截取到的之前的文字+选中内容+截取到的之后的文字组合
    },

 

el-input 给输入框选中内容前后添加标签,主要用substring字符串截取

 

 

el-input 给输入框选中内容前后添加标签,主要用substring字符串截取

 

上一篇:cookie记住浏览位置


下一篇:Java题目 左旋转字符串 解题心得