[TOC]
# 下拉刷新
```
//下拉刷新
ea55_shuaxin(function (){
//程序运行逻辑
//结束下拉刷新
ea55_shuaxin_end();
});
```
*****
# 上拉加载更多
```
api.addEventListener({
name:'scrolltobottom',
extra:{
threshold:0 //设置距离底部多少距离时触发,默认值为0,数字类型
}
}, function(ret, err){
alert('已滚动到底部');
});
```