所以这是iframe:
<iframe src="http://example.com/example.php"></iframe>
及其输出
<link rel='stylesheet' href="http://example.com/css/style.css" type='text/css' />
<div id="someid" class="someclass">
some random text....
</div>
现在我怎么能控制这个html div,因为我不拥有example.com?
如何从我的网站添加css来修改这个div?
我已经尝试了这个,但它不起作用:
<script>
$('iframe').load( function() {
$('iframe').contents().find("head")
.append($("<style type='text/css'> .header{display:none;} </style>"));
});
</script>