2014-07-08 96 views
1

如何獲取模板的html內容?例如,我有以下模板:獲取模板的HTML內容流星

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

我需要事件單擊按鈕捕獲div#example的HTML內容。有可能嗎?

回答

1

你可以使用JQuery(已內置到流星)本

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

如果您分配使用Template.test.events click事件,你應該有所有的數據,在你的「這個」模板describess。

1

從Meteor 1.x開始,您可以使用Blaze.toHTML()。它以字符串形式返回給定模板的HTML。