<script id="movieTemplate" type="text/x-jquery-tmpl">
<tr class='title'>
<th>Director </td>
<th>Name </th></tr>
<tr class='title'>
<td>${Name}</td>
<td>${Director}</td></tr>
</script>
$( "#movieTemplate" ).tmpl( movies ).appendTo( "#movieList" );
在这个模板中,我想只调用一次标题。 但是因为我不止一次调用模板,所以多次调用模板并且我多次打印。
我想打印一次(执行):
<th>Director </td>
<th>Name </th></tr>
如何使用模板执行此操作。我错过了任何东西
答案 0 :(得分:0)
在致电
之前<tbody id="movieList"></tbody>, I called
<th> Director</th>.
Its like:
<table>
<th> Director </th>
and than the template