我想停止执行,就像在Ui对话框上打开确认的对话框,然后在点击确定时恢复。
dilog.dialog('open');
答案 0 :(得分:0)
如果您希望用户进行确认,您需要使用UI确认模式
以下是docs,用法是:
$(function() {
$( "#dialog-confirm" ).dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"Delete all items": function() {
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
});