我有以下
<div id="header">
{{> header}}
</div>
<div class="hidden content_box">
{{> content}}
</div>
“content_box”在开始时是隐藏的。
模板“标题”有一个按钮。
<template name="header">
<button id="display_content">Click to display content</button>
</template>
模板“内容”只是一个简单的 div
<template name="content">
It's me, content
</template>
当我单击标题中的按钮时,我想“显示” content_box。
我如何实现这一目标?- 或者更好的是,在您需要从另一个模板的事件访问模板的 DOM 的情况下,实现这种效果的最佳方法是什么?
Template.header.events "click button#display_content": (e) ->
Template.content.show() ?????