我将在点击事件后更新html的一部分。但我不想重新阅读整个页面...我的代码看起来像这样;
<div>OTHER PAGE STUFF I DO NOT WANT TO RE-RENDER</div>
<div>
<span id="updateThisSection">{{data}}</span>
<div>
我想在点击事件
后更新该范围内的数据linkClicked : function(e) {
//update the data inside the span here
}