我尝试添加一个iframe元素(ID为“ intra”),效果非常好。
但是我接下来要尝试的是隐藏div(id =“ top”),以便从is there a way hide elements in IFRAME src page?中隐藏标题,但这不会删除标题。
这是我的代码:
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$('#intra').load(function(){
$('#intra').contents().find('#top').hide();
});
你们能看到这是怎么回事吗?
或者甚至有可能使用HTML隐藏该元素?