一个页面不能初始化多个上拉刷新,下拉加载更多的插件
mui.init({
pullRefresh: {
container: '#wrapperSeconds',
down: {
callback: wrapdownRefresh
},
up: {
contentrefresh: '正在加载...',
callback: wrapupRefresh
}
}
},{
pullRefresh: {
container: '#pullrefresh',
down: {
callback: pulldownRefresh
},
up: {
contentrefresh: '正在加载...',
callback: pullupRefresh
}
}
});
我发现这样写,只能是第一个好使.
上网查资料,没有搜到合适的解决方案. 请帮忙一下
- 发布:2017-05-09 10:28
- 更新:2017-05-09 14:37
- 阅读:1330
之前也是遇到这个问题了,后来改成了那个webview模式的,就可以了,
-
z***@163.com (作者)
请问是如何解决的呢?
目前我是用的这种方式,就算页面有一百个上拉刷新也不怕了, 不过要是tab切换显示的div,建议使用http://www.dcloud.io/hellomui/examples/pullrefresh_with_tab.html这个网址.!
mui.init();
mui("#wrapperSeconds").pullRefresh({
container: '#wrapperSeconds',
down: {
callback: wrapdownRefresh
},
up: {
callback: wrapupRefresh
}
});
mui("#pullrefresh").pullRefresh({
container: '#pullrefresh',
down: {
callback: pulldownRefresh
},
up: {
callback: pullupRefresh
}
});2017-05-09 15:20
z***@163.com (作者)
http://www.cnblogs.com/CyLee/p/5324224.html你看下这个, 我是想在一个页面中使用两个,至今无解
2017-05-09 11:52