下拉刷新都是手动下拉屏幕的时候触发的,如何自动触发呢,比如一个预加载的页面,进来的时候自动触发下拉刷新的动作,或者做成交互的点击某个按钮,页面下拉刷新就出来~
如啼眼
- 发布:2015-08-20 14:10
- 更新:2017-06-23 19:46
- 阅读:5043
朋也 - https://tomoya92.github.io
上拉加载里有一个auto:true的属性,下拉刷新不知道有没有
mui.init({
pullRefresh: {
container: '#pullrefresh',
down: {
callback: pulldownRefresh
},
up: {
auto:true,
contentrefresh: '正在加载...',
callback: pullupRefresh
}
}
});
如啼眼 (作者)
我研究了下,下面的可以,也可以在一些事件中使用
mui.ready(function() {
mui('#pullrefresh').pullRefresh().pullupLoading();//下拉刷新
mui('#pullrefresh').pullRefresh().pulldownLoading();//上拉刷新
})
2015-08-20 16:38
GodBless
回复 如啼眼: 大哥 上拉和下拉 代码 反了
2017-08-08 15:18