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

Javascript 字符串组装用函数 format

时间:2014-08-16 20:59:01      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:java   io   for   ar   cti   javascript   ef   type   

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

标签:java   io   for   ar   cti   javascript   ef   type   

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

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