每当我显示 jquery-ui 模态对话框滚动条时,页面中就会出现。
这就是我显示对话框的方式
$("#Frmula").dialog({
autoOpen: false,
height: 250,
width: 460,
modal: true,
buttons: {
//'Create an account': function() { },
Close: function() {
$(this).dialog('close');
//$('input:visible:enabled:first').focus();
}
},
close: function() {
}
});
任何想法为什么会发生?
谢谢