摘要:
window.page = function page(ele, para) { this.ele = document.querySelector(ele); this.options = { count: 100, pageSize: 8, showPage: 5, ... 阅读全文
随笔档案-2017年11月
职责链模式
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... 阅读全文