获取模板Meteor的HTML内容

时间:2014-07-08 14:20:25

标签: meteor

如何获取模板的html内容?例如,我有以下模板:

<template name="test">
<div id="example">
    <strong>This is a test.</strong>
</div> <button id="btn">Get</button></template>

我需要事件点击按钮,捕获div #example的HTML内容。有可能吗?

2 个答案:

答案 0 :(得分:1)

您可以使用JQuery(已经内置于流星中)

var html = $('#example').html();

答案 1 :(得分:0)

如果使用Template.test.events分配click事件,则应该在“this”中包含模板描述的所有数据。