jQuery 模板:使用 AND 运算符创建条件语句
这有效:
<input type="checkbox" {{if (ON) }} checked {{/if}} id="cbCentral" />
这不起作用:
<input type="checkbox" {{if (ON && QC) }} checked {{/if}} id="cbCentral" />
看起来 &&不能用于表示 AND 运算符。如何表达 AND 运算符? ON 和 QC 是布尔类型。
This works:
<input type="checkbox" {{if (ON) }} checked {{/if}} id="cbCentral" />
This doesn't work:
<input type="checkbox" {{if (ON && QC) }} checked {{/if}} id="cbCentral" />
It seems && cannot be used to represent an AND operator. How can I express an AND operator?
ON and QC are type boolean.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可行:
我在
{{if}}
中使用 AND 进行了一个简单的测试:http://jsfiddle.net/Encosia/vNXV5/This should work:
I threw together a simple test using AND in an
{{if}}
here: http://jsfiddle.net/Encosia/vNXV5/