下面是我的代码,我有一个名为的加载 div dvLoading
,谁能告诉我在哪里或如何在 open 属性中显示加载 div 并在打开时隐藏它?
$("#dialog-edit").dialog({
title: 'Add',
autoOpen: false,
resizable: false,
height: height,
width: width,
/*show: { effect: 'drop', direction: "up" },*/
modal: true,
draggable: true,
open: function (event, ui) {
$(this).load(url);
},
close: function (event, ui) {
$(this).dialog('close');
}
});
谢谢