使用iframe的createElement时无法设置allowTransparency

时间:2013-02-15 22:06:31

标签: javascript iframe createelement

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

2 个答案:

答案 0 :(得分:5)

试试这个:

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

答案 1 :(得分:-1)

您是否尝试过使用jQuery?它就像

一样简单
$(".example").attr("allowTransparency", "true");

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