$("#dvdialogconfirm").text(msg);
$("#dvdialogconfirm").dialog({
resizable: false,
modal: true,
zIndex: 100001,
closeOnEscape: false,
width: 360,
buttons: {
OK: function () {
$(this).dialog("close");
if (func != null) {
func();
}
},
Cancel:
function () {
func1();
}
}
});
答案 0 :(得分:2)
$("#dvdialogconfirm").text(msg);
$("#dvdialogconfirm").dialog({
resizable: false,
modal: true,
zIndex: 100001,
closeOnEscape: false,
width: 360,
buttons: {
YES: function () {
$(this).dialog("close");
if (func != null) {
func();
}
},
NO: function () {
func1();
}
}
});
我认为这个可以帮助你。
答案 1 :(得分:0)
您可以根据需要更改对象来更改按钮文本。假设您希望它为“是”或“否”对话框:
$("#dvdialogconfirm").text(msg);
$("#dvdialogconfirm").dialog({
resizable: false,
modal: true,
zIndex: 100001,
closeOnEscape: false,
width: 360,
buttons: {
Yes: function () {
$(this).dialog("close");
if (func != null) {
func();
}
},
No:
function () {
func1();
}
}
});