标签: javascript jquery templates underscore.js
我使用了underscore.js模板函数_.template()。我有这样的代码:
$('#content').append(_.template(superTemplate)); $('#elementFromTemplate').doFancyStuff();
现在我想通过jQuery访问一个元素,该元素在模板中呈现。但由于这是异步发生的,所以此时此刻不可用。有没有办法等待完成渲染模板?