我在使我的 jquery 对话框自动调整为内容时遇到问题,我使用的是 jquery ui 1.9.2,并且我正在使用以下设置:
{
autoResize: true
close: function (e, ui){
height: "auto"
maxHeight: 600
maxWidth: 800
minHeight: 300
minWidth: 400
modal: true
width: "auto"
}
并且产生的行为是:http ://screencast.com/t/1OwLgVHDH 所以它只有在我手动拖动调整大小处理程序后才能正确调整大小,
我是否需要手动触发调整大小(我试过这个但我不知道怎么做,我试过 .trigger('resize') 我试过 trigger('resizeStart') 没用)?
并且我尝试使用在传递给对话框函数的对象上看到的自动宽度,但也没有用。
请帮忙,谢谢