具有以下代码:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: [{
text: "Send",
click: function() {
// ...
}
}]
});
该按钮在对话框中不可见。任何提示或提示,我错过了什么吗?
PS:我也从@palmplam 尝试了这个例子,也没有工作:
$('#feedback_dialog_container').dialog({
modal: true,
closeOnEscape: false,
title: "Title",
height: 650,
width: 600,
buttons: {"Send" : function() {
// ...
}
}
});