你好那里:)我试图弄清楚如何在jquery脚本中使用我可以通过ajax获取一些内容。我试图自定义这个脚本以满足我的需求,它非常直接的转发:
$('a.poplight[href^=#]').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
jQuery('#' + popID).fadeIn(200).css({ 'width': Number( popWidth ) });
//Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding
var popMargTop = ($('#' + popID).height() + 80) / 2;
var popMargLeft = ($('#' + popID).width() + 80) / 2;
//Apply Margin to Popup
jQuery('#' + 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)'}) IE
return false;
});
//Close Popups and Fade Layer
$('a.close, #fade, .cancel').live('click', function() { //When clicking on the close or fade layer...
$('#fade , .popup_block').fadeOut(function() {
$('#fade, a.close').remove(); //fade them both out
$('form').clearForm();
});
return false;
});
它正在调用隐藏的div。我想要只调用一个php文件,它会保存所有内容。这就是html的样子:
<a href="#?w=480" rel="whatever" class="poplight"><input type="button" class="button" value="update"/></a>
任何想法?提前谢谢:)
好的,我尝试了jQuery UI的对话框...我必须说,这有点令人沮丧...... 我知道很难跟踪别人的编码,但我实际上可以调整几乎所有的东西,除了如何使用这段代码来获取数据并在弹出窗口中显示它,因为href调用模态大小,而不是任何实际内容
所以我回到这一个lol