如何将我的对话框中的滚动条设置为默认设置为底部,这样当对话框打开时,滚动条位于底部
$( "#report-dialog" ).dialog({
modal: true,
autoOpen: false,
show: "blind",
hide: "fold",
width: 850,
height: 600,
buttons: {
Close: function() {
$( this ).dialog( "close" );
}
}
});