endFn 爲下拉完成後執行的函數。javascript
function lzyxiala(endFn) { window.onload = function() { window.addEventListener('touchstart', touchstart, false); window.addEventListener('touchmove', touchMove, false); } var _start = 0; var _end = 0; function touchstart(event) { var touch = event.targetTouches[0]; _start = touch.pageY; } function touchMove(event) { var touch = event.targetTouches[0]; _end = (touch.pageY - _start); //下滑才執行操做 if(_end > 200) { //200即手機下滑屏幕的距離,超過200則執行刷新動做 endFn(); } } }