Jquery tmpl创建或声明

时间:2013-06-21 14:46:22

标签: javascript jquery jquery-templates

{{if production_country != null || production_year != null}}
    <h3 class="heading">Details</h3>
    <p><b>${production_country} ${production_year}</b>, {{html roles}}</p>
{{/if}}

如何创建OR语句。这在我的jquery模板中不起作用..

1 个答案:

答案 0 :(得分:0)

而不是:

{{if production_country != null || production_year != null}}

使用:

{{if production_country !="" OR production_year !=""}}

如果您需要确定production_country和production_year的值,我不确定您的问题。例如production_year.value!=“”

看到这个问题:

jQuery: checking if the value of a field is null (empty)