$( "#dialog-confirm" ).dialog({
resizable: false,height:140,modal: true,buttons: {
"Delete all items": function() {
$( this ).dialog( "close" );
},Cancel: function() {
$( this ).dialog( "close" );
}
},close:function(){
$( this ).dialog( "close" );
}
});
如何解决这个问题?
最佳答案
无限递归正在这里发生.
只是改变
原文链接:https://www.f2er.com/jquery/428546.html只是改变
close:function(){
$( this ).dialog( "close" );
}
至
close:function(){
}