我知道这个问题已被提出但我没有找到解决方案
这是我的jquery代码:
function openArmoryDialog(id) {
var divID = $("#ArmoryDialogDiv");
$.ajax({
type: "GET",
url: "/aoa_mvc/armory/Detail/" + id,
cache: false,
dataType: 'html',
error: function (XMLHttpRequest, textStatus, errorThrown) {
$(divID).html(errorThrown);
},
success: function (data, textStatus, XMLHttpRequest) {
$(divID).html(data);
},
complete: function (XMLHttpRequest, textStatus) {
$('#ArmoryDialogDiv').dialog({
width: 500,
modal:true // This is not working
});
}
});
}
我不知道为什么模态弹出窗口没有打开,我尝试了很多解决方案,但没有一个能为我工作
我包含了所需的css文件