当你有Template.name.rendered = function(){...}时,我已经读过 您可以在其中使用常规的jQuery代码。
我试图让用户发表评论时,帖子可以向下滑动或弹出,具体取决于我在jQuery代码中输入的内容。
这是我到目前为止所拥有的
Template.posts.rendered = function(){
if (!this.rendered){
function setEvents(){
$(".posts").on("click", function(){
$(this).slideDown(750);
});
};
var init = function(){
setEvents();
}();
this.rendered = true;
}
};

答案 0 :(得分:0)
这样做的流行方式是使用模板事件
Template.posts.events({
'click': function(){
$(".posts").slideDown(750);
}
});