dialog()方法去掉右上角的关闭按钮
程序员文章站
2022-06-08 23:05:27
...
dialog()方法:
$('#costBudgeting').dialog({
width:"auto",
height:"auto",
modal:true,
resizable:true,
title:"设备成本预算",
minimizable:false,
maximizable:false,
collapsible:false,
closable:false,
onBeforeClose:function(){
},
onBeforeOpen:function(){
},
buttons:[{
text:"保存",
handler:function(){
$('#costBudgeting').dialog( "close" );
},{
text:"取消",
handler:function(){
$('#costBudgeting').dialog("close");
$("#table2Bid").empty();
$("#table2Bid").append(body);
}
}]
});
}
将 closable : false,设为false就可以了可以写一个关闭按钮代替它。由于我这里两个按钮执行的代码不一样,因此写了两个按钮