您好我正在使用以下代码进行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',它也会隐藏对话框。请提出解决方案
答案 0 :(得分:1)
删除','来自js的最后一个选项。请从包含以下内容的css中删除!important:
display: block !important;