我在一个页面中有 3 个 Jquery 弹出窗口。当我打开一个窗口说登录弹出窗口,然后我打开另一个说反馈弹出窗口时,我需要在单击反馈弹出链接时关闭我的登录弹出窗口。这是我的登录弹出窗口的示例代码。我也将相同的用于反馈弹出窗口。请帮我查询。谢谢大家。
$(document).ready(function() {
$('a.login-window').click(function() {
//Getting the variable's value from a link
var loginBox = $(this).attr('href');
//Fade in the Popup
$(loginBox).fadeIn(300);
//Set the center alignment padding + border see css style
var popMargTop = ($(loginBox).height() + 24) / 2;
var popMargLeft = ($(loginBox).width() + 24) / 2;
$(loginBox).css({
'margin-top' : -popMargTop,
'margin-left' : -popMargLeft
});
// Add the mask to body
$('body').append('<div id="mask"></div>');
$('#mask').fadeIn(300);
return false;
});
// When clicking on the button close or the mask layer the popup closed
$('a.close, #mask').live('click', function() {
$('#mask , .login-popup').fadeOut(300 , function() {
$('#mask').remove();
});
return false;
});