【发布时间】:2011-03-05 21:26:28
【问题描述】:
我有这段代码,它在我加载页面时开始运行,当我点击链接时,它会打开一个弹出窗口。 我的弹出窗口充满了邮件脚本。加载页面后,在我点击链接以显示弹出窗口之前发送所有邮件。
$(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>
【问题讨论】:
-
有什么地方我们可以看到这个动作吗?此外,目标 div 的示例可能会有所帮助。
-
@Surreal Dreams,我没有地方展示这一点。我已按要求添加了目标 duv。
标签: jquery