抱歉,我觉得我很傻,忽略了一些基本的东西,但我刚刚开始使用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');
})
});
答案 0 :(得分:0)
$('a#closelink').click(
和
('#childframe').hide(