日期:2014-05-16 浏览次数:20438 次
$('#dialog').dialog({
autoOpen: false,
width: 600,
modal:true,
buttons: {
"Ok": function() {
$(this).dialog("close");
},
"Cancel": function() {
$(this).dialog("close");
}
}
});