vue 封装的iframe方法一直报不能reading 'createElement'?

iframeOnload() {
      this.$nextTick(() => {
        const iframeContainer = this.$refs.frame;
        const that = this;
        iframeContainer.onload = function () {
          that.$emit('onload');
          const document = iframeContainer.contentDocument;
          const style = document.createElement('style');
          style.type = 'text/css';
          style.innerHTML = 'body{min-width:0}';
          document.head.appendChild(style);
        };
      });
    },

我自己封装了一个iframe,不知道这个方法哪里错了,一直报这个错误

Cannot read properties of null (reading 'createElement')

阅读 1.5k
1 个回答

iframe中嵌套的如果是一个跨域的网站,是无法操作的,获取的contentDocument是null

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题