我正在使用Mustache模板脚本来呈现我的JSON
值。我想知道:既然我需要绑定data
到html
我正在渲染的,有没有办法应用.data()
到object
我要渲染的?
我用一些代码更好地解释它:
var temp = $("#template").html(),
obj = Mustache.render(temp,this);
//I want to bind data to obj before it gets appended
$('#appended').append(obj);