码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 简单工厂

时间:2015-03-29 08:18:14      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

function detail() {
    this.imgArr = [];
    this.codeArr = [];
}
detail.prototype.addimg = function(img) {
    this.imgArr.push(img);
};
detail.prototype.addcode = function(code) {
    this.codeArr.push(code);
};
detail.prototype.show = function() {
    $.each(this.imgArr, function(index, val) {
        $(‘#resDiv‘).html($(‘#resDiv‘).html() + val);
    });
    $.each(this.codeArr, function(index, val) {
        $(‘#resDiv‘).html($(‘#resDiv‘).html() + val);
    });
};
var detailFactory = {};
var d1 = new detail();
d1.addimg(‘img1‘);
d1.addcode(‘code1‘);
var d2 = new detail();
d2.addimg(‘img2‘);
d2.addcode(‘code2‘);

detailFactory.df1 = d1;
detailFactory.df2 = d2;

$(function() {
    var r = Math.random();
    if (r > 0.5) {

        detailFactory.df2.show();
    } else {

        detailFactory.df1.show();
    }


});

 

javascript 简单工厂

标签:

原文地址:http://www.cnblogs.com/stono/p/4375184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!