我有一個jQuery模式,我想添加一個額外的按鈕,如果符合條件語句。有條件的按鈕添加到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');