简易的js模板工具
程序员文章站
2022-05-24 22:33:46
...
简单的js模板工具1,从Extjs中撮出来的。
简单的js模板工具2,仿Java的String.format()。
var re=/\{([\w\-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g; String.prototype.tpl=function(obj){ return this.replace(re,function(m, name){ return obj[name] !== undefined ? obj[name] : ""; }); }; var tpl='<div>{a}</div><br/><div>{b}</div>'; console.log( tpl.tpl({a:'mfk',b:'vfn'}) ); //<div>mfk</div><br/><div>vfn</div> console.log( tpl.tpl({a:'it',b:'eye'}) ); //<div>it</div><br/><div>eye</div>
简单的js模板工具2,仿Java的String.format()。
String.prototype.format=function(){ var i=0,args=arguments; return this.replace(/%s/g,function(){ var v=args[i++]; return v !== undefined ? v : ''; }); }; var tpl='first:%s,last:%s'; console.log( tpl.format('mfk','vfn') ); //first:mfk,last:vfn console.log( tpl.format('it') ); //first:it,last:
上一篇: 网站性能提高实战经验点滴记录
下一篇: 谈谈我理解的流量