jquery 点击标题弹出内容和遮罩层后,点击关闭按钮怎么关闭

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 点击标题弹出内容和遮罩层后,点击关闭按钮怎么关闭相关的知识,希望对你有一定的参考价值。

<div id="layer"></div>
<div class="pop_box">
<dl>
<dt>标题1</dt>
<dd class="box">内容1<a href="#" class="close">关闭</a></dd>
</dl>
<dl>
<dt>标题2</dt>
<dd class="box">内容2<a href="#" class="close">关闭</a></dd>
</dl>
</div>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function()
$('.pop_box dl').click(function ()
var text = $(this).find('dd').show();
$('#layer').show()
);
);
</script>

<style type="text/css">
* margin:0; padding:0;
.pop_box position:relative ;
.pop_box dl dt width:150px; float:left;
.box width:500px; height:300px; background:#fff; border:2px solid #ddd; position:fixed;z-index:2; left:30%; top:30%; display:none;
#layer width:100%; height:100%; position:fixed; background:#ff0000; left:0; top:0; z-index:1; position:absolute; left:0; top:0; display:none; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;
.close width:60px; height:30px; line-height:30px; background:#ff0000; color:#fff; display:block; text-align:center; margin:100px auto;
</style>

$(".close").click(function()
$(this).parent("dd").hide();
$('#layer').hide();
)

追问

加上了,还关闭不了

追答

你这个问题很奇怪啊,一开始说我还不信,去试了一下,确实不好使,在我其他项目都好使,你这样,先用:

$(".close").click(function()
$(this).parent("dd").fadeOut();
$('#layer').fadeOut();
)

这个也会使他消失,但有个特效,你不想要可以在fadeOut()里面填个0,变成:fadeOut(0)

修改:

上面说的作废你改成hide(1),这个我也不知道为啥,反正设成1毫秒内执行完毕就行了……

参考技术A 你需要写个关闭的函数啊,使用.hide()函数追问

求帮忙写下,我写半天总是关闭不了

以上是关于jquery 点击标题弹出内容和遮罩层后,点击关闭按钮怎么关闭的主要内容,如果未能解决你的问题,请参考以下文章

弹出遮罩层后禁止滚动效果

html5如何实现弹出提示框,并且伴随遮罩层并且可以关闭弹出框

jQuery点击图片弹出大图遮罩层

jQuery点击图片弹出大图遮罩层

jQuery点击图片弹出大图遮罩层

弹出遮罩层后禁止底部页面滚动