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')
iframe中嵌套的如果是一个跨域的网站,是无法操作的,获取的contentDocument是null