作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 jQuery 模板中使用 IF
语句?
这是我的模板:
<script type="text/html" id="attachmentListTemplate">
{{if $item.current_cmt_id == id }}
<li>
<a href="${link}" class="fancyIFrame clearfix">${title}</a>
</li>
{{/if}}
</script>
其中 id 本质上是 ${id}
并且由数据绑定(bind)传递(通过 KnockoutJS)。没有 IF 语句的输出很好,如下所示: ${$item.current_cmt_id}
这是数据绑定(bind)(由 KnockoutJS 提供支持):
<ul data-bind='template: { name: "attachmentListTemplate", foreach: attachmentsModel.convAttachments, templateOptions: {current_cmt_id: <%=comment.id%>} }'> </ul>
关于为什么 if 语句不起作用有什么建议吗?我正确比较这两个条件吗?
最佳答案
假设 id
是一个可观察对象,您需要将其作为函数调用,而不是将其视为属性。请尝试以下操作:
{{if $item.current_cmt_id == id()}}
关于jquery - 在模板内使用 If 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5098731/
我是一名优秀的程序员,十分优秀!