jQuery模拟原生态App上拉刷新下拉加载效果代码
以下任意均可:
1. jQuery模拟原生态App上拉刷新下拉加载效果代码,鼠标上拉时会显示loading字样,并且会模拟加载一条静态数据,支持触屏设备使用。
原文:http://www.sucaijiayuan.com/Js/other/1055.html
2. jquery iscroll上拉 下拉加载内容
原文:http://www.kuitao8.com/20150113/3462.shtml
3. 移动端下拉刷新、上拉加载更多 Zepto/jQuery插件
GitHub地址:https://github.com/ximan/dropload
使用方法
$('.element').dropload({ loadUpFn : function(me){ $.ajax({ type: 'GET', url: 'json/update.json', dataType: 'json', success: function(data){ alert(data); // 代码执行后必须重置 me.resetload(); }, error: function(xhr, type){ alert('Ajax error!'); me.resetload(); } }); }, loadDownFn : function(me){ $.ajax({ type: 'GET', url: 'json/more.json', dataType: 'json', success: function(data){ alert(data); // 代码执行后必须重置 me.resetload(); }, error: function(xhr, type){ alert('Ajax error!'); me.resetload(); } }); } });
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17