我正在Iframe.No中执行源URL的加载仅主体标记的任务。 我已经完成了以下代码。 一个javascript函数
Function test(){
var iframe=document.getElementById('test');
iframe.contentWindow.document.body.style.backgroundColor="green";
}
<iframe id="Iframe1" width="700" height="400" src="http://www.facebook.com" Onload=test()></iframe>
但没有效果。
我的实际任务是仅将自定义css应用于该body标签。
请建议任何解决方案。