重氮的多重条件

时间:2015-09-17 20:05:54

标签: plone diazo

我在重庆有一个规则集,我想说

"如果没有"#portal-column-two"并且也没有"#portal-column-one"然后做X"在我看来,这个规则看起来像

<rules css:if-not-content="((#portal-column-one) and (#portal-column-two))"> blah </rules>

我查看了文档,无法找到任何明显的信息。我想我可以像这样包装规则集;

<rules css:if-not-content="#portal-column-one">
<rules css:if-not-content="#portal-column-two">
blah
</rules>
</rules>

但这似乎有些不雅。我想我应该能把它放到一行吗?

思考? 感谢

1 个答案:

答案 0 :(得分:4)

你只需做::

<rules css:if-not-content="#portal-column-one,#portal-column-two"> blah </rules>

它只是一个css选择器。如果选择器为空,则应用规则。