所有div都被激活而不是一个

时间:2011-03-04 13:54:12

标签: jquery

我有这个代码,当我加载页面时它开始运行,当我点击链接时,它会打开一个弹出窗口。 我的弹出窗口充满了邮件脚本。加载页面后,所有邮件都会在我点击链接显示弹出窗口之前发送。

$(document).ready(function() {
//When you click on a link with class of poplight and the href starts with a # 
$('a.poplight[href^=#]').live('click', function() {
    var popID = $(this).attr('rel'); //Get Popup Name
    var popURL = $(this).attr('href'); //Get Popup href to define size

    //Pull Query & Variables from href URL
    var query= popURL.split('?');
    var dim= query[1].split('&');
    var popWidth = dim[0].split('=')[1]; //Gets the first query string value

    //Fade in the Popup and add close button
    $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="images/icon/delete.png" class="btn_close" title="<?php echo $lang['sluit'] ?>" /></a>');

    //Define margin for center alignment (vertical   horizontal) - we add 80px to the height/width to accomodate for the padding  and border width defined in the css
    var popMargTop = ($('#' + popID).height() + 80) / 2;
    var popMargLeft = ($('#' + popID).width() + 80) / 2;

    //Apply Margin to Popup
    $('#' + popID).css({
        'margin-top' : -popMargTop,
        'margin-left' : -popMargLeft
    });

    //Fade in Background
    $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
    $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies 

    return false;
});

//Close Popups and Fade Layer
$('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
    $('#fade , .popup_block').fadeOut(function() {
        $('#fade, a.close').remove();  //fade them both out
    });
    return false;
});
});

这是目标div:

echo '<a href="#?w=100" rel="popup_bestelling_mail'.$row['best_id'].'" class="poplight" title="'.$lang['send'].'"><img align="center" src="images/icon/pdf_mail.png" /></a>';

<div id="popup_edit_bestelling<?php echo $row['best_id']; ?>" class="popup_block">
<iframe src="edit_bestelling.php?id=<?php echo $row['best_id']; ?>" frameborder="0" width="1000" height="575">
</iframe>
</div>

1 个答案:

答案 0 :(得分:2)

$('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
    $('#fade , .popup_block').fadeOut(function() {
        $('#fade, a.close').remove();  //fade them both out
    });
    return false;
});

应该是

$('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
    $(this).fadeOut(function() {
        $(this).remove();  //fade them both out
    });
    return false;
});

否则你会影响所有#fade和所有.close