jQ.ajax({
type : "POST",
url : url,
cache : false,
success : function(msg) {
console.log(msg);
// jQ("<div></div>").attr('id', 'dvShiftDialog').appendTo('body');
jQ('#main').html(jQ(msg));
jQ('#dvShiftDialog').dialog({
title : 'Confirm',
modal : true,
draggable : true,
resizable : true,
width : 525,
height : 625,
close : function() {
jQ('#dvShiftDialog').dialog("destroy");
jQ('#dvShiftDialog').remove();
jQ('div.ui-dialog').remove();
}
});
},
error : function(err) {
var m = "Error: " + err.status + ' ' + err.statusText;
window.console && console.log(m) || alert(m);
}
});
答案 0 :(得分:0)
根据http://jqueryui.com/demos/dialog/(我假设您正在使用的内容),您可以在对话框中放置任何内容。所以只需在.gif
标签内的某个地方使用div
图像(或者您正在使用的对话框),它应该可以做到这一点