幾種js設計模式

1. 工廠模式 做用:實現對象的批量建立javascript /* 構造函數 */ function Person(name) { this.name = name; } function Car(model) { this.model = model; } /* 建立 */ function create(type, val) { return (this instanceof cr
相關文章
相關標籤/搜索