ここに私のコードがあります。私はという名前のロード 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');
}
});
ありがとう