我有一个 div:
<div class = "desc"></div>
此 div 位于主干视图加载的模板中。
这是主干视图: DetailsView = Backbone.View.extend({ events: {.....});
我想在模板加载时调用以下 jquery 函数:
我怎样才能做到这一点?
$('#desc').expander({
slicePoint: 50,
expandText: 'Click Here to Read More',
userCollapseText: 'Hide Text'
});
它来自扩展器 jquery 插件。