我创建了一个网页:
display:none
来实现的。display
属性变为inline
(通过jQuery)但是,当显示iframe时,还有close
按钮。点击后,iframe display
再次变为none
。但是,问题是它无法正常工作。简而言之,关闭按钮中的display:none
无效。
我的代码如下:
$(document).ready(function() {
$("#a_addupdate").click(function(){
$("#iframe_add_update").css(
"display" , "inline"
);
});
}); //This will show the iframe
$(document).ready(function() {
$("#close_frame").click(function(){
$("#iframe_add_update").css(
"display" , "none"
);
});
} //This will hide the frame
修改:我还使用z-index:2
作为iframe
答案 0 :(得分:2)
如果关闭按钮位于iframe上,则应使用:
// code in your iframe
$(document).ready(function() {
$("#close_frame").click(function(){
$("#iframe_add_update", window.parent.document).css(
"display" , "none"
);
});
}
注意window.parent.document
位。这将使您的代码在父页面上搜索#iframe_add_update
元素。
如果您的jQuery
中也有iframe
并且他们都在同一个域中,这将有效。
答案 1 :(得分:0)
您可以更新为:
$(document).ready(function() {
$("#iframe_add_update").contents().find("#close_frame").click(function() {
$("#iframe_add_update").css("display", "none");
});
}); //This will hide the frame
$("#iframe_add_update").contents()
可让您找到iframe内的内容。