我有两个按钮,"删除" "取消",在对话框中。我正在使用jquery Ui。谷歌搜索但没有得到理想的解决方案。以下是我的代码。如何增加或减少对话框内按钮的高度和宽度?
$(function() {
$("#dialog-confirm").dialog({
resizable: false,
height: 150,
width: 300,
buttons: {
"Delete": function() {
$(this).dialog("close");
},
"Cancel": function() {
$(this).dialog("close");
}
}
});
});