14

通常のJavaScriptを使用してiframeをdivにロード/追加したいと思います。これはJQueryで問題なく実行できますが、jsファイルを含めたくありません。「document.getElementById( "ad54")」(またはdivに割り当てたID)というエラーが発生し続けます。私は次のコードを持っています:

var link = "http://www.google.com"
var iframe = document.createElement('iframe');
iframe.frameBorder=0;
iframe.width="300px";
iframe.height="250px";
iframe.id="randomid";
iframe.setAttribute("src", link);
document.getElementById("ad54").appendChild(iframe);

<div id="ad54"></div>
4

1 に答える 1

38

これはwindow.onloadのように書く必要があります

window.onload = function(){
   var link = "http://www.quirksmode.org/iframetest2.html"
var iframe = document.createElement('iframe');
iframe.frameBorder=0;
iframe.width="300px";
iframe.height="250px";
iframe.id="randomid";
iframe.setAttribute("src", link);
document.getElementById("ad54").appendChild(iframe);

}
于 2012-04-24T16:36:45.210 に答える