如何在框架内隐藏子框架?

时间:2010-11-12 17:59:05

标签: jquery parent-child

抱歉,我觉得我很傻,忽略了一些基本的东西,但我刚刚开始使用jQuery。

尝试编写隐藏框架的链接,但需要引用子框架中的父页面以隐藏它。所以这是我的代码:

<script>  
$(document).ready(function(){  
$('a#closelink')click(function(){  
$(window.parent.document.getElementById('#childframe')hide('slow'));  
})  
});  
</script>  

使用以下html:
    <a id="closelink" href="#">Close</a>

我也试过以下,但无济于事:

$(document).ready(function(){
$('a#closelink')click(function(){
$('#childframe', window.parent.document).hide('slow');
})
});

1 个答案:

答案 0 :(得分:0)

$('a#closelink').click(

('#childframe').hide(