【发布时间】:2014-02-18 21:36:27
【问题描述】:
我正在尝试将选定的类添加到范围标记内的 img 标记中。
<ul class="cci-TweetContainer">
{{range refTweets start=0 end=9}}
<li data-userID="{{:userId}}">
<a href="javascript:void(0);" alt="User Avatar" data-userID="{{:userId}}">
{{if refTweets == 0}}
<img class="selected" src="{{:userAvatar}}" alt="User avatar icon" width="25" height="25" />
{{else}}
<img src="{{:userAvatar}}" alt="User avatar icon" width="25" height="25" />
{{/if}}
</a>
</li>
{{/range}}
</ul>
【问题讨论】:
标签: if-statement jsrender