首页 > 代码库 > Jquery遮罩ShowLoading组件

Jquery遮罩ShowLoading组件

1、意义

     开发项目中,前台的页面要发请求到服务器,服务器响应请求返回数据到前台,这段时间,有可能因为返回的数据量较大导致前台页面出现短暂性的等待,此时如果用户因不知情而乱点击有可能造成逻辑混乱,所以此时需要在加载数据中将前台进行提示在加载数据中,利用jquery的遮罩组件可以完成这个功能需求。


2、实现步骤

    (1)、下载showLoading.css    jquery.showLoading.min.js 两个文件。

   (2)、在jsp中引入这两个文件

<link href=http://www.mamicode.com/"style/showLoading.css" rel="stylesheet" type="text/css" />>
   (3)、在异步请求中使用这个组件

function showloading(url,data){
	$("body").showLoading();
	$.ajax({
		url:url,
		data:data,
		dataType:"json",
		success:function(obj){
			$("body").hideLoading();
		}
	});
}


Jquery遮罩ShowLoading组件