将代码动态注入iframe

时间:2017-09-04 13:55:58

标签: javascript iframe

我想建立我自己的广告netowork,但我在同一时间陷入困境,我怎么能动态地将内容(如图像或gif)注入iframe,并且每次都保持相同的src属性(<iframe src="http://example.com/iframe.js" </iframe>)属性?我用PHP尝试了一切,但没有任何效果。

1 个答案:

答案 0 :(得分:0)

要将内容添加到iframe中,您可以执行以下操作:

var doc = document.getElementById('yourIframe').contentWindow.document;
doc.open();
doc.write('Some test content');
doc.close();