JavaScript:格式化输入

JavaScript:格式化输入

使用 "Name: {0}, Age: {1}".format("Miao", 33); 的方式输入参数

console.log("<a href='{0}'>{1}</a>".format("http://www.love.com", "Lover");


String.prototype.format = function() {

var formatted = this.toString(); for (var i = 0; i < arguments.length; ++i) { formatted = formatted.replace("{" + i + "}", arguments[i]); } return formatted; };

你可能感兴趣的:(JavaScript:格式化输入)