handlebars

快速开始



var data={
    title:"hello",
    content:"osoLife"
};
var source=$("#art-tpl").html();
var tpl=Handlebars.compile(source);
var html=tpl(data);

each的基本使用

姓名 性别 年龄
var data={ "student":[ { "name":"moli", "sex":"男", "age":"18" }, { "name":"osoLife", "sex":"男", "age":"28" }, { "name":"michael", "sex":"男", "age":"38" } ] }; var tpl=Handlebars.compile($("#table-tpl").html()); $("tbody").html(tpl(data));

你可能感兴趣的:(handlebars)