Я использую плагин шаблона jQuery и не знаю, как получить индекс элементов: http://api.jquery.com/category/plugins/templates/
Вот мой код:
<script id="optionTmpl" type="text/x-jquery-tmpl">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
{{each Answers}}
<tr>
<th><input type="radio" name="group1" value="${this.AnswerID}" /></th>
<td>${this.AnswerText}</td><!-- add number in this line--->
</tr>
{{/each}}
</table>
</script>
Я хочу показатьответ в формате, подобном следующему
1) answer1, 2) answer2, 3) answer3
или
a) answer1, b) answer2, c) answer3
Что мне делать?