我使用 Jquery,我有两个按钮的对话框[ OK, Cancel ]
我的代码是
$("#test").dialog({
modal: true,
minHeight: 600,
minWidth: 550,
buttons: {
OK: function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
}
});
有时我需要隐藏OK
按钮(仅查看权限)
有谁能够帮我?