Jquery UI 对话框并关闭
Jquery UI dialog and Close
您好,我正在为 jquery 对话框使用以下代码。
$("#div1").dialog({
dialogClass: "county-dialog",
modal: true,
draggable: false,
title: statecode,
closeOnEscape: true,
});
.county-dialog
{
position: absolute !important;
height: auto !important;
top: 20% !important;
left: 23% !important;
display: block !important;
width:auto !important;
background: white !important;
}
但是当我关闭对话框时,模态外观继续但对话框没有关闭。
如果我要删除 'dialogClass' 那么它也会隐藏对话框。请提出解决方案
从 js 的最后一个选项中删除“,”。请从 css 中删除 !important 包含:
display: block !important;
您好,我正在为 jquery 对话框使用以下代码。
$("#div1").dialog({
dialogClass: "county-dialog",
modal: true,
draggable: false,
title: statecode,
closeOnEscape: true,
});
.county-dialog
{
position: absolute !important;
height: auto !important;
top: 20% !important;
left: 23% !important;
display: block !important;
width:auto !important;
background: white !important;
}
但是当我关闭对话框时,模态外观继续但对话框没有关闭。 如果我要删除 'dialogClass' 那么它也会隐藏对话框。请提出解决方案
从 js 的最后一个选项中删除“,”。请从 css 中删除 !important 包含:
display: block !important;