mui 上拉加载

		html
		
		
js $(document).ready(function() { //上拉加载下拉刷新 mui.init({ pullRefresh: { container: '#pullrefresh', bounce: true, //是否回弹 up: { contentrefresh: '正在加载...', contentnomore: '我是有底线的', callback: pullupRefresh } } }); /** * 上拉加载上拉 */ var over = false; var page = 1; function pullupRefresh() { setTimeout(function() { mui('#pullrefresh').pullRefresh().endPullupToRefresh((over)); //参数为true代表没有更多数据了。 if(over !== true) { page++; getData(page); } }, 500); } }); function getData(page) { mui.ajax(baseUrl + '/api/v1/cashValue/getWithdrawList',{ data:{ "page":page, "count":count }, dataType:'json',//服务器返回json格式数据 type:'get',//HTTP请求类型 timeout:10000,//超时时间设置为10秒; success:function(data){ console.log(data) // 数据为空 禁止分页 if(data.data == "" || data.data == undefined || data.data == null){ over = true; } }, error:function(xhr,type,errorThrown){ console.log(type) } }); }

你可能感兴趣的:(javascript,mui.js,js)