我想加载/ 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>