$("#dialog").dialog({
resizable: false,
height:140,
modal: true,
hide: {effect: "fadeOut", duration: 5000},
buttons: {
Save: function() {
alert("Saved");
$("#dialog").dialog( "close" );
},
Cancel: function() {
$("#dialog").dialog( "close" );
}
}
});
我正在使用Chrome。 Here's a demo。
当我关闭对话框时,它会隐藏,但也会缩小。
我没有告诉它缩小!为什么这样做呢?
最佳答案
使用fade
而不是fadeOut
将解决此问题。
检查此:http://jsbin.com/alafez/4/edit#preview
关于javascript - 为什么jQuery对话框在淡出时会缩小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8959772/