其他分享
首页 > 其他分享> > el-input 给输入框选中内容前后添加标签,主要用substring字符串截取

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,截取,substring,输入框,modalInfo,选中,endPos,var,startPos
来源: https://www.cnblogs.com/do-something/p/14676506.html