我有一个事务编辑 jQuery 对话框,当单击正确的按钮时弹出就好了,但对话框中定义的“保存”和“取消”按钮不显示。对话框的 HTML 是:
<div id="trxpop">
<div>
<label for="txtItem1">Item1: </label>
<input id="txtItem1" type="text" /><br />
<label for="item1">Item2: </label>
<input id="txtItem2" type="text" /><br />
</div>
</div>
和 jQuery 在这里
jQuery.fn.EditTrx = function (item1, item2) {
$("#txtItem1").val(item1);
$("#item1").val(item1);
$("#trxpop").dialog({
title: 'Edit Transaction',
modal: true,
buttons: {
'Save': function () {
/* Do stuff */
$(this).dialog('close');
},
'Cancel': function () {
$(this).dialog('close');
}
},
resizable: false,
draggable: true,
stack: true,
closeOnEscape: true,
zIndex: 1320,
width: 500
});
}
这应该根据我读过的所有文档起作用。