码迷,mamicode.com
首页 > 移动开发 > 详细

js自写字符串 append 方法

时间:2015-05-18 12:35:42      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

function stringbuilder()
{
  this.arr = new Array();
  this.append=function(str)
  {
    this.arr.push(str);
  }
  this.tostring = function()
  {
    return this.arr.join(‘‘);
  }
}


var sb = new stringbuilder();
sb.append("hello");
sb.append("doudou");
$("#div1").html(sb.tostring());

js自写字符串 append 方法

标签:

原文地址:http://www.cnblogs.com/ghelement/p/4511340.html

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