我在 jquery 对话框弹出窗口中遇到了一个奇怪的问题,我希望这里有人可以提供帮助。弹出代码如下所示。它工作正常,除了一件事。当弹出窗口显示时,它有时会将背景内容向下推大约对话框窗口的高度。有没有办法防止这种情况发生?
$("#searchPopUp").dialog({
modal: true,
bgiframe: false,
autoOpen: false,
resizable: true,
position:{ my: "center", at: "center", of: window },
title: 'Choose one search criteria and<br/>populate the corresponding field below:',
width: 400,
close: function( event, ui ) {},
buttons: {
"Search": function() {
$("#viewDevicesSearchForm\\:searchCommandLink").click();
},
"Close": function() {
$( this ).dialog( "close" );
}
}
});