代码改变世界

随笔档案-2017年11月

原生js分页器插件

2017-11-26 21:20 by muamaker, 1262 阅读, 收藏, 编辑
摘要: window.page = function page(ele, para) { this.ele = document.querySelector(ele); this.options = { count: 100, pageSize: 8, showPage: 5, ... 阅读全文

职责链模式

2017-11-13 18:48 by muamaker, 166 阅读, 收藏, 编辑
摘要: var Chain = function(fn){ this.fn = fn; this.success = null; this.error = null; this.args = []; } Chain.prototype.addNext = function(fn){ return this.success = fn; } Chai... 阅读全文
点击右上角即可分享
微信分享提示