在jQuery tmpl中使用“if”的

时间:2010-09-20 06:20:28

标签: jquery jquery-templates

是否可以在jQuery tmpl模板中创建if句子?

<script id="template" type="text/html">
    <h1>${someVar}</h1>
    if (${intro}!="")
        <small>${intro}</small>
    endif
    <p>${restOfVariables}</p>
</script>

现在,这只会写出if作为文本,所以有没有办法做这样的事情?或者我是否必须创建两个不同的模板并在调用模板之前检查我的js?

1 个答案:

答案 0 :(得分:21)

根据these docs,你可以这样做:

<script id="template" type="text/html">
    <h1>${someVar}</h1>
    {{if intro != ""}}
        <small>${intro}</small>
    {{/if}}
    <p>${restOfVariables}</p>
</script>