我想在点击iframediv
子元素时删除iframe
元素。我想在点击广告时关闭div
内的Google广告。
我怎么能这样做?
这是我的HTML文档:
<div class="iframediv">
<iframe src="otherdomin.com/page2"></iframe>
</div>
<div class="iframediv">
<iframe src="otherdomin.com/page"></iframe>
</div>
答案 0 :(得分:0)
使用JQuery的隐藏或删除方法
<div class="iframediv" id="div1">
<iframe src="otherdomin.com/page2" id="iframe1"></iframe>
</div>
<div class="iframediv" id="div2">
<iframe src="otherdomin.com/page" id="iframe2"></iframe>
</div>
<script>
$('#iframe1').click(function(){
$('#div1').hide();
//$('#div1').remove();
});
</script>