📜  如何在处理之前实现是或否弹出窗口 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:07.537000             🧑  作者: Mango

代码示例2
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(); } }); };