// 初始化对话框
$("#dialog-confirm").dialog(
{
modal: true, // 创建模式对话框
autoOpen: false,
buttons: {
"Ok": function() {
$(this).dialog('close');
},
"Cancel": function() {
$(this).dialog('close');
}
}
});
您可能感兴趣的文章: