javascript设计模式-工厂方法模式
工厂方法模式笔记 通过对产品类的抽象使其创建业务主要负责用于创建多类产品的实例 对于创建多类对象,简单工厂不太实用,这是简单工厂模式的应用局限,当然这正是工厂方法模式的价值之所在 通过工厂方法模式可以轻松的创建多个类的实例对象,而且创建对象的方式避免了使用者与对象类之间的耦合,用户不必关心创建该对象的具体类,只需调用工厂方法即可。 demo实例:为页面创建不同功能的按钮按钮工厂类
/*按钮工厂类*/ var ButtonFactory=function(type,content){ if(this instanceof ButtonFactory){ var s = new this[type](content); }else{ return new ButtonFactory(type,content); } }
工厂原型中设置创建所有类型数据对象的基类
//工厂原型中设置创建所有类型数据对象的基类 ButtonFactory.prototype = { defaultBtn:function(content){ //默认/基本按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#333'; btn.style.background='#fff'; document.getElementById('container').appendChild(btn); })(content); }, primaryBtn:function(content){ //原始按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#fff'; btn.style.background='#337ab7'; btn.style.borderColor='#2e6da4'; document.getElementById('container').appendChild(btn); })(content); }, successBtn:function(content){ //操作成功按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#fff'; btn.style.background='#5cb85c'; btn.style.borderColor='#4cae4c'; document.getElementById('container').appendChild(btn); })(content); }, infoBtn:function(content){ //弹出信息的按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#fff'; btn.style.background='#5bc0de'; btn.style.borderColor='#46b8da'; document.getElementById('container').appendChild(btn); })(content); }, warnBtn:function(content){ //谨慎操作的按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#fff'; btn.style.background='#f0ab4e'; btn.style.borderColor='#eea236'; document.getElementById('container').appendChild(btn); })(content); }, dangerBtn:function(content){ //危险动作的按钮 this.content = content; (function(content){ var btn=document.createElement("button"); btn.innerHTML=content; btn.style.color='#fff'; btn.style.background='#d9534f'; btn.style.borderColor='#d43f3a'; document.getElementById('container').appendChild(btn); })(content); } }
//测试的数据
var data=[ {type:'defaultBtn',content:'默认按钮'}, {type:'primaryBtn',content:'原始按钮'}, {type:'successBtn',content:'成功按钮'}, {type:'infoBtn',content:'信息按钮'}, {type:'warnBtn',content:'警告按钮'}, {type:'dangerBtn',content:'危险按钮'}, ];
循环生成多个对象实例
for(var i=5;i>0;i--){ ButtonFactory(data[i].type,data[i].content); }
html中css代码
1 #container{width:500px;margin:100px auto;} 2 button{display: inline-block;padding: 6px 12px;margin-bottom: 0;font-size: 14px;font-weight: 400;line-height: 1.42857143; 3 text-align: center;white-space: nowrap;vertical-align: middle;-ms-touch-action: manipulation;touch-action: manipulation; 4 cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; 5 background-image: none;border: 1px solid transparent;border-radius: 4px;margin-right:5px;}
html代码
<div id="container"></div>
浏览器显示截图
相关推荐
cas的无名 2020-08-02
dalang 2012-08-28
feikers 2019-06-28
liupinghui 2019-06-21
TingBen 2019-03-14
PythonBiglove 2016-03-02
Haopython 2019-01-18
蔷薇部落 2011-12-22
liyongkuan 2016-03-16
PHP100 2019-03-28
MATLAB 2018-05-27
化身戏子 2018-03-10
vczh的日常 2018-02-09
MATLAB 2018-01-29
航通社 2017-12-29
数据分析侠 2017-12-26
迷思 2017-12-17