一个小问题我现在无法理解:
我有一个表格中显示的对象列表。其中一个对象值是分数。我可以使用Django模板标签将其显示为数字,但我想使用我的jquery插件来显示星号。不知道如何迭代这个。我正在尝试这个:
{% for result in mylist %}
<td>{{ result.type }}</td>
<td>{{ result.description }}</td>
<td>{{ result.rating.votes }}</td>
<td><div class="raty" data-number="{{ result.rating.score }}"></div></td>
{% endfor %}
然后我得到了这个:
<script>
$('.raty').raty({ readOnly: true, score: $('.raty').attr('value') });
</script>
问题是它使用jquery显示每个对象的相同分数。
编辑:我得到了它的工作:<script>
$('.raty').each(function() {
$(this).raty({ readOnly: true, score: $(this).attr('data-number') });
});
</script>
答案 0 :(得分:1)
div
元素没有value
属性。尝试使用隐藏的输入元素。像这样:
<table>
{% for result in mylist %}
<tr><td><input type='hidden' class='hidden_score' value='{{ result.rating.score }}'></input><div class="raty"></div></td></tr>
{% endfor %}
</table>
然后在你的剧本中:
$.each($('.hidden_score'), function( index, value ) {
var myval = $(this).val();
$(this).parent().find( '.raty').raty({ readOnly:true, score:myval});
});
因此,对于具有hidden_score类的每个元素,您将使用属于每个元素的父元素(因此它们是兄弟姐妹)的元素得到一个“raty”并且具有正确的分数。