我想在 .load() 之前显示“LoaderMain”div,当它全部完成时隐藏“LoaderMain”。当我取消注释我的显示/隐藏时,它永远不会显示。
$('#content').html('');
//$('#LoaderMain').show();
$("#content").load(url, function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$("#content").html(msg + xhr.status + " " + xhr.statusText);
}
});
//$('#LoaderMain').hide();