我有一些我想在 jQuery UI 对话框中动态打开的链接,使用jQuery.load()
. 对话框打开后,我希望将链接加载到已打开的对话框中。
- 因此,网站加载,您单击一个链接,它会在一个对话框中打开。没关系。您可以根据需要多次关闭和打开它。
- 当它打开时,如果您单击加载内容中的链接之一,它将不起作用。
链接看起来像这样...
<a href="http://www.example.com/index.php?action=something&search=somethingelse#fragment" rel="dialog" title="Title Attribute">
点击事件绑定...
$('body').delegate("a[rel~=dialog]", "click", function(e){return ajax_dialog(this, e);});
该ajax_dialog
函数检查是否有对话框,如果没有则调用创建一个对话框,调用加载内容,设置标题,如果对话框未打开则打开对话框。
function ajax_dialog(_this, _event){
var urlToLoad = $(_this).attr("href").replace("#", "&ajax=true #");
var linkTitle = $(_this).attr("title");
// Create dialog
if(!$('body').find('#ajaxDialog').size()){
$('body').append('not yet init<br />'); // This shows up the first click only.
init_dialog('#ajaxDialog');
}
// Load Dialog Content
load_dialog('#ajaxDialog', urlToLoad);
// Add title
$('#ajaxDialog').dialog('option', 'title', linkTitle);
// Open dialog (or reload)
if(!$('#ajaxDialog').dialog('isOpen')){
$('#ajaxDialog').dialog('open');
$('body').append('not yet open<br />'); // This shows up the first click only.
}
return false;
}
init_dialog
如果没有,该函数会创建对话框...
function init_dialog(_this){
$('body').append('<div id="ajaxDialog"></div>');
// Set Dialog Options
$(_this).dialog({
modal:true,
autoOpen:false,
width:900,
height:400,
position:['center','center'],
zIndex: 9999,
//open:function(){load_dialog(this, urlToLoad);}, This didn't work without destroying the dialog for each click.
close:function(){$(this).empty();}
});
}
该load_dialog
函数将所需的内容加载到对话框中。
function load_dialog(_this, urlToLoad){
$(_this).load(urlToLoad, function(){
$('body').append(urlToLoad + ' load function<br />'); // This shows up each click
$(_this).append("Hihi?"); // This shows up each click
});
// The loaded information only shows the first click, other times show an empty dialog.
}