0

我正在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>
4

2 回答 2

6

试试这个:

iframe.setAttribute('allowtransparency', 'true');
于 2013-02-15T22:11:57.367 回答
-1

你用 jQuery 试过这个吗?它会很简单

$(".example").attr("allowTransparency", "true");

您的 Javascript 示例似乎是正确的。

于 2013-02-15T22:11:12.483 回答