标签:
/*** ** 功能: 字符串格式化替换操作 ***/ String.prototype.format = function () { var args = arguments; return this.replace(/\{(\d+)\}/g, function (m, i) { return args[i]; }); }
JS 模拟C# 字符串格式化操作
原文地址:http://www.cnblogs.com/allen-tech/p/4758216.html