日期:2014-05-17 浏览次数:20447 次
$('#dialog').dialog({
autoOpen: false,
width: 600,
modal: true,
title: dialogTitle,
buttons: {
"确定": function () {
alert('确定');
},
"关闭": function () {
$(this).dialog("close");
}
}
});
$('#dialog').dialog({
autoOpen: false,
width: 600,
modal: true,
title: dialogTitle,