就tab共用上拉刷新的,一边上拉加载结束之后,在另外一边重新启用上拉加载,这时候,由于 mui('#refreshContainer').pullRefresh().refresh(true);在上拉加载未结束的时候会出现“上拉显示更多”字眼,请问怎么隐藏这几个字。
if(index==1){
mui('#refreshContainer').pullRefresh().refresh(true);
$("#yckdata").html("");
currPage = 0;
ggYckList();
}
if(index==0){
mui('#refreshContainer').pullRefresh().refresh(true);
$("#dckdata").html("");
currPage = 0;
ggWckList();
}
1 个回复
wclssdn
先禁用上拉加载功能,然后,文字就消失了。再打开上拉加载功能即可继续响应用户的上拉加载动作。