用JavaScript附加到一个div创建的iframe(Create iframe with ja

2019-06-23 22:04发布

我想加载/ iframe中追加与常规的JavaScript一个div。 我可以用jQuery做到这一点没有问题,但我不希望包括的js文件。 我不断收到错误“的document.getElementById(‘ad54’)”(或任何ID我指定的div)。 我有以下代码:

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>

Answer 1:

你应该写里面这在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);

}


文章来源: Create iframe with javascript appending to a div