欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

简易的js模板工具  

程序员文章站 2022-05-24 22:10:10
...
简单的js模板工具1,从Extjs中撮出来的。
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: