vue中实现简单的富文本编辑器

html

      <div ref="editorContent"
           id="editorContent"
           :class="['editor-content',{'hidden':textLength!=0}]"
           contenteditable="true"
           @click="watchDivPosition($event)"
           @keyup="watchDivPosition($event)"
           @input="watchTextLength($event)">
      </div>

js

 // 可编辑div获取range节点
    getDivPosition(event) {
      const doc = event.target.ownerDocument || event.target.document
      const win = doc.defaultView || doc.parentWindow
      const range = win.getSelection().getRangeAt(0)
      return range
    },
    // 设置光标位置
    setCaretPosition(ctrl, lastEditRange = null) {
      // console.log({ ctrl, lastEditRange });
      if (!lastEditRange) {
        window.getSelection().collapse(ctrl, 0)
      } else {
        const doc = ctrl.ownerDocument || ctrl.document
        const win = doc.defaultView || doc.parentWindow
        const selection = win.getSelection()
        selection.removeAllRanges()
        selection.addRange(lastEditRange)
      }
    },
    watchTextLength(event) {
      const range = this.getDivPosition(event)
      this.lastEditRange = range;
      const editorContent = this.$refs.editorContent
    
      //解决删除所有内容后全选颜色残留问题
      if (editorContent.innerHTML == '<br>') {
        this.$refs.editorContent.firstChild.remove()
        this.updateTextColor(this.textColor[0])
      }
      // //计算所有长度
      const emoDomList = editorContent.querySelectorAll('.emoWH')
      const imgDomList = editorContent.querySelectorAll('.imgWH')
      this.textLength = editorContent.innerText.length + emoDomList.length + imgDomList.length
      if (this.textLength >= 3000) {
        this.$Message.warning("文章最长3000字")
      }

    },
    watchDivPosition(event) {
      const range = this.getDivPosition(event)
      // console.log('click', range);
      this.lastEditRange = range
      let parentNode = range.commonAncestorContainer.parentNode
      // console.log("元素", parentNode);
      // console.log("元素名", parentNode.nodeName);
      // console.log("颜色", parentNode.color);
      
     switch (parentNode.nodeName) {
        case 'B':
          this.showType = 'textStrong'
          this.selectColorValue = '#000000'
          break;
        case "FONT":
        this.selectColorValue = parentNode.color.toUpperCase()
        this.showType = ""
          break;
        case "DIV":
        this.showType = undefined
        this.selectColorValue = '#000000'
          break;
        default:
          break;
      }
      //上上级
      // console.log('上上级', parentNode.parentNode.nodeName !== 'DIV');
      if (parentNode.parentNode.nodeName !== 'DIV') {
        if (parentNode.parentNode.nodeName == 'B') {
          this.showType = 'textStrong'
        }
        if (parentNode.nodeName == "FONT") {
          this.selectColorValue = parentNode.color.toUpperCase()
        }
      }
    },
  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值