doT.js模板引擎
官网上面有详细的使用文档。这里我仅仅记录将其如何改为jQuery插件。
$.extend({
tmpl: function(template, data){
return doT.template(template).apply(null,[data]);
}
});
然后这样使用:
$.tmpl("<p>{{=it.name}}</p>", {name:"qianlan"});
官网上面有详细的使用文档。这里我仅仅记录将其如何改为jQuery插件。
$.extend({
tmpl: function(template, data){
return doT.template(template).apply(null,[data]);
}
});
然后这样使用:
$.tmpl("<p>{{=it.name}}</p>", {name:"qianlan"});