我有一个 jQuery 模式,如果满足条件语句,我想在其中添加一个附加按钮。
原始示例代码(删减):
$("#dialog").html("<div></div>").dialog({
title: "Some Title",
modal: true,
width: 550,
buttons: {
Ok: function() {
//
},
'A Button': function() {
//
}
}
}).dialog('open');
因此,正如您在上面看到的,有一个带有 2 个按钮的模式,但我还想在其中添加一些动态代码,以便在设置变量时能够满足额外的按钮。例如
var some_variable = 0;
$("#dialog").html("<div></div>").dialog({
title: "Some Title",
modal: true,
width: 550,
buttons: {
Ok: function() {
//
},
'A Button': function() {
//
}
/* ??? */
if (some_variable==1) //then add the other button's code here..
/* ??? */
}
}).dialog('open');