私は次のものを持っています
<div id="header">
{{> header}}
</div>
<div class="hidden content_box">
{{> content}}
</div>
「content_box」は最初は隠れています。
テンプレート「header」にはボタンが 1 つあります。
<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() ?????