通常の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>