1.首先引用必须的文件
<link rel="stylesheet" href="pullToRefresh.css"/>
<script src="js/iscroll.js"></script> <script src="js/pullToRefresh.js"></script>
2.加入需要的html,结构如下
<div id="wrapper"> <ul> <li>row 10</li> <li>row 9</li> <li>row 8</li> <li>row 7</li> <li>row 6</li> <li>row 5</li> <li>row 4</li> <li>row 3</li> <li>row 2</li> <li>row 1</li> </ul> </div>
3.初始化插件
refresher.init({
id:"wrapper",
pullDownAction:Refresh,
pullUpAction:Load
});
function Refresh() {
// <-- Simulate network congestion, remove setTimeout from production!
wrapper.refresh();/****remember to refresh after action completed! --example-yourId.refresh(); ----| ****/
}
function Load() {
// <-- Simulate network congestion, remove setTimeout from production!
wrapper.refresh();/****remember to refresh after action completed!!! -example--yourId.refresh(); --- ****/
}加载ajax上拉时卡顿方法送出加一条
setInterval("wrapper.refresh();","2000");
//在外面让它2秒刷新下滚动条就ok了
function Load() {
wrapper.refresh();
//在这里处理加载ajax时始终记住上一个滚动的位置,所以有点小卡
}
回复