Javascript Infinite Scroll,如何重构这一段代码
用途
当用户手机 scroll 的时候,自动加载分页中的内容。如何让下面这一段代码更优美
代码
javascript
//网址:http://xxx.com/game/top-hot/p/1/ //需要先引入 jquery.min.js 库 var pageAutoLoad = []; pageAutoLoad.page = 1 || 1; pageAutoLoad.pageTotal = 2 || 1; pageAutoLoad.nextUrl = "\/game\/top-hot\/p\/PAGE\/" || ''; pageAutoLoad.selector = { content: '.list_game ul', page: '.page_load' }
javascript
//全局公用部分 //文件位置 /public/js/init.js $(function(){ if (typeof pageAutoLoad != 'undefined') { $(window).scroll(function () { loadData(); }); } }); var totalheight = 0; function loadData() { totalheight = parseFloat($(window).height()) + parseFloat($(window).scrollTop()); if ($(document).height() <= totalheight) { if (pageAutoLoad.page > pageAutoLoad.pageTotal) { return; } var nextPage = pageAutoLoad.page + 1; var nextUrl = pageAutoLoad.nextUrl.replace('PAGE', nextPage); $.ajax({ url: nextUrl, type: 'GET', dataType: 'html', error: function () { $('.more-link').trigger('click'); }, success: function (html) { var htmlContent = $(html).find(pageAutoLoad.selector.content).html(); var htmlPage = $(html).find(pageAutoLoad.selector.page).html(); $(pageAutoLoad.selector.content).append(htmlContent); $(pageAutoLoad.selector.page).html(htmlPage); pageAutoLoad.page = nextPage; } }); } }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
建议你还是用一个类来实现这个组件,参数设计的话可以参考以下
...
不喜欢回调的方式可以基于jquery的自定义事件来解决。
写法大致就是
$.fn.customName
=function (options) {...}
然后调用的时候:
$('selector').customName(options)
帮你把格式调了下:
重構如下:
主要是提取邏輯並抽象。