0

iframe を挿入するようにしていますdocument.createElementが、設定できません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 に答える