在一个非常简单的jQuery模态中,我通过点击CLOSE关闭模态
$('#close').click(function(e) { e.preventDefault(); $('#overlay,#alertModalOuter').fadeOut(400,function() { $(this).remove(); }); });
解决方法
改变你的功能就这样应该工作:
$('#close,#overlay').click(function(e) { e.preventDefault(); $('#overlay,function() { $('#close').remove(); }); });