我正在执行仅加载 Iframe 中源 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 标签。
请提出任何解决方案。