Spry 地区的双倍 if 条件
<div spry:region="ds1" spry:repeatchildren="ds1">
<b spry:if=" '{title}'!='' ">
<!-- this is the first if -->
<a href="#" spry:if=" '{author}'!='' ">{author}
<!-- this is the second if -->
</a>
</b>
</div>
我想知道是否有任何像
if(x==y && i>j)
在
<b>spry</b>
地区一样简单的方法。 我在 spry 文档 (labs.adobe.com/technologies/spry/) 中找不到任何信息
<div spry:region="ds1" spry:repeatchildren="ds1">
<b spry:if=" '{title}'!='' ">
<!-- this is the first if -->
<a href="#" spry:if=" '{author}'!='' ">{author}
<!-- this is the second if -->
</a>
</b>
</div>
I wonder if there is any method as simple as
if(x==y && i>j)
in
<b>spry</b>
region.
I can't find any information in spry docs (labs.adobe.com/technologies/spry/)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
spry:if
属性内的语法是 Javascript,因此您可以使用&&
:The syntax inside the
spry:if
attribute is Javascript, so you can use&&
:您也可以调用一个函数
,并在函数中返回布尔值作为结果
also you can call a function instead
and in your function return Boolean value as result
通常我喜欢这样
Normally I do like this