Python中支持字符串格式化,其基本形式如下: str = "I'm %s, %s years old." % ('jack', 19) print(str) #结果: I'm jack, 19 years old. 在JavaScript中虽没有类似的方法,但我们可以利用字符串的replace方法自定义字符串的格式化方法: [removed] $(function () { /*自定义字符串格式化*/ String.prototype.Format = function (args) { /*this代表要调用Format方法的字符串*/ /*repl