$("#first").dialog({ width: 304, modal: true,
beforeclose: function (e, ui)
{
$("#confirm").dialog({ width: 500, modal: true,
buttons: {
"Confirm": function () {
document.location.href = "/Home/Index";
},
"Cancel": function () {
$(this).dialog('close');
return false;
}
}
});
}
});
对话框#first
关闭,无需等待#confirm
对话框打开。我知道confirm()
javascript 的功能,但我想在这种情况下使用对话框。我怎样才能做到这一点?