📅  最后修改于: 2022-03-11 14:59:07.537000             🧑  作者: Mango
ConfirmDialog('Are you sure');
function ConfirmDialog(message) {
$('').appendTo('body')
.html('' + message + '?
')
.dialog({
modal: true,
title: 'Delete message',
zIndex: 10000,
autoOpen: true,
width: 'auto',
resizable: false,
buttons: {
Yes: function() {
// $(obj).removeAttr('onclick');
// $(obj).parents('.Parent').remove();
$('body').append('Confirm Dialog Result: Yes
');
$(this).dialog("close");
},
No: function() {
$('body').append('Confirm Dialog Result: No
');
$(this).dialog("close");
}
},
close: function(event, ui) {
$(this).remove();
}
});
};