HTML 文字列内の要素のコンテンツを別のコンテンツに置き換えたい。HTML5データ属性を介して要素を取得しています。バックボーン テンプレートは、div とネストされた div の長い文字列である html_string を返します。
var html_string = template({model:player});
var newHtml = $(html_string).find("[data-position='Forward_1']").html("<div>NEWCONTENT</div>").html();
console.log('new html is');
console.log(newHtml);
出力は次のとおりです。
new html is
<div>NEW CONTENT</div>
だからすべてが入れ替わる..