vue富文本编辑器里有多个video某一个video播放的时候 其它video就暂停 没法给video加ref和点击事件 因为是富文本编辑器

javascript 复制代码
<div v-html="info.brief" class="content" ref="editor" @click="judgeImg($event)"></div>

<script>
export default {
  mounted() {
    const observer = new MutationObserver(this.addVideoListeners);
    const editorElement = this.$refs.editor; // 假设富文本编辑器有一个ref="editor"
    observer.observe(editorElement, { childList: true, subtree: true });
  },
  beforeDestroy() {
    // 清除MutationObserver
    const observer = new MutationObserver(this.addVideoListeners);
    const editorElement = this.$refs.editor;
    observer.disconnect();
  },
  methods: {
    addVideoListeners(mutations) {
      mutations.forEach(mutation => {
        mutation.addedNodes.forEach(node => {
          if (node.tagName.toLowerCase() === 'video') {
            // 为新添加的video元素添加事件监听器
            node.addEventListener('play', this.pauseOtherVideos);
          }
        });
      });
    },
    pauseOtherVideos(event) {
      const videos = this.$el.querySelectorAll('video');
      videos.forEach(video => {
        if (video !== event.target) {
          video.pause();
        }
      });
    }
  }
};
</script>

主要是富文本编辑器里的视频 所以比较难折腾

相关推荐
Kagerou10 分钟前
vue3基础知识(结合TypeScript)
前端
市民中心的蟋蟀15 分钟前
第五章 使用Context和订阅来共享组件状态
前端·javascript·react.js
逆袭的小黄鸭20 分钟前
JavaScript 闭包:强大特性背后的概念、应用与内存考量
前端·javascript·面试
carterwu31 分钟前
各个大厂是怎么实现组件库和相应扩展的?基础组件、区块、页面
前端
Face32 分钟前
promise 规范应用
前端
Mintopia32 分钟前
Node.js 中 fs.readFile API 的使用详解
前端·javascript·node.js
Face33 分钟前
事件循环
前端·javascript
ONE_Gua35 分钟前
chromium魔改——navigator.webdriver 检测
前端·后端·爬虫
CodePencil36 分钟前
CSS专题之盒模型
前端·css
谦谦橘子36 分钟前
服务端渲染原理解析
前端·javascript·react.js