iframe不会在生产中加载所有样式

时间:2019-03-25 05:38:17

标签: javascript webpack

目前,我正在使用Webpack开发聊天小部件,但面临一个奇怪的问题,即iframe无法在生产环境中加载所有样式,只能在本地使用。例如

const ifrm = document.createElement('iframe');

ifrm.style.position = "absolute";
ifrm.style.width = "65";
ifrm.style.height = "65";
ifrm.style.border = "none";
ifrm.style.zIndex = '9999998';
ifrm.style.background = "transparent";
ifrm.style.right = "0";
ifrm.style.bottom = "0";
ifrm.style.margin = "40 50";

仅在生产中加载此内容:

style="position: absolute; border: none; 
z-index: 9999998; background: transparent; right: 0px; bottom: 0px;"

如您所见,它完全忘记了宽度,高度和边距

有什么想法吗? Firefox和Chrome都会发生这种情况

0 个答案:

没有答案