【js】字符串 替换 占位符

阅读更多
/**
 * 功能 : //字符串 替换 占位符
 * 例子 : "我是{0},性别{1}".format("张三", "男") 
 * 结果 : "我是张三,性别男"
 * */
String.prototype.format=function(){  
  if(arguments.length==0) return this;  
  for(var s=this, i=0; i   
  

 

你可能感兴趣的:(javascript,占位符)