gpt4 book ai didi

javascript - 使用 iframe 的 createElement 时无法设置allowTransparency

转载 作者:行者123 更新时间:2023-11-28 16:06:01 24 4
gpt4 key购买 nike

我正在执行 document.createElement 来插入 iframe,但无法设置 allowTransparency。这是我正在使用的代码:

var iframe = document.createElement('iframe');
iframe.className = 'example';
iframe.allowTransparency = 'true';
iframe.frameBorder = '0';
iframe.scrolling = 'no';
iframe.style.width = '260px';
iframe.style.height = '120px';
iframe.style.border = 'none';
iframe.src = '//example.com/page';
document.body.appendChild(iframe);

但是根据 Web Inspector 的说法,输出只是:

<iframe class="example" frameborder="0" scrolling="no" style="width: 260px; height: 120px; border: none; " src="//example.com/page"></iframe>

最佳答案

试试这个:

iframe.setAttribute('allowtransparency', 'true');

关于javascript - 使用 iframe 的 createElement 时无法设置allowTransparency,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14904153/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com