首页 > 编程语言 > 详细

Javascript 字符串组装用函数 format

时间:2014-08-16 20:59:01      阅读:345      评论:0      收藏:0      [点我收藏+]
if (!String.prototype.format) {
  String.prototype.format = function() {
    var args = arguments;
    return this.replace(/{(\d+)}/g, function(match, number) { 
      return typeof args[number] != ‘undefined‘
        ? args[number]
        : match
      ;
    });
  };
}

Javascript 字符串组装用函数 format,布布扣,bubuko.com

Javascript 字符串组装用函数 format

原文:http://www.cnblogs.com/sherlock99/p/3916835.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!