博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript 简单工厂
阅读量:5290 次
发布时间:2019-06-14

本文共 838 字,大约阅读时间需要 2 分钟。

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();    }});

 

转载于:https://www.cnblogs.com/stono/p/4375184.html

你可能感兴趣的文章
.Net学习 第2季06 C#面向对象 Path类 File类 FileStream类 StreamReader/StreamWriter类
查看>>
VS2008+Qt 项目目录编辑配置
查看>>
【动态规划DP】传娃娃-C++
查看>>
LOJ.121.[离线可过]动态图连通性(线段树分治 按秩合并)
查看>>
201521123072 结对编程
查看>>
最长上升子序列
查看>>
maven 依赖、聚合和继承 (转)
查看>>
selinux介绍/状态查看/开启/关闭
查看>>
DockerAPI版本不匹配的问题
查看>>
Leetcode: Ugly Number II
查看>>
项目立项管理
查看>>
(没时间维护,已下架)博客园第三方客户端-i博客园正式发布App Store
查看>>
map使用实例
查看>>
关于ShapeDrawable应用的一些介绍(上)
查看>>
洛谷 P3984 高兴的津津
查看>>
洛谷 P1308 统计单词数
查看>>
使用GitHub
查看>>
1.25回溯 n皇后问题,素数环,困难的串
查看>>
大量界面刷新时手动Dispose也是有必要的
查看>>
机电传动控制第三周学习笔记
查看>>