我希望在用户点击按钮时隐藏所有页面,在页面中心显示带有加载gif的div并向页面调用ajax请求。当ajax完成隐藏阴影时,隐藏加载div。有可能吗?谁能解释我怎么样? 我看到here这段代码:$
("#btnLoad").click(function(){
// Put an animated GIF image insight of content
$("#content").empty().html('<img src="loading.gif" />');
// Make AJAX call
$("#content").load("http://example.com");
});
我可以用这个吗?我可以在哪里拍摄阴影?
答案 0 :(得分:2)
E.g。
function loadingOn() {
$('#loader').fadeIn(300);
}
function loadingOff() {
$('#loader').fadeOut(300);
}
function loadingToggle() {
$('#loader').fadeToggle(300);
}
您只能在需要时调用该功能:)
答案 1 :(得分:1)