Home > Backend Development > PHP Tutorial > javascript - Please help me with the js template language mustache

javascript - Please help me with the js template language mustache

WBOY
Release: 2016-08-27 09:06:51
Original
1021 people have browsed it

<code><script type="text/template" id="item-template">
    <div class="view">
        <input type="checkbox" class="toggle" {{ completed ? "checked" : "" }} >
        <label for="">{{title}}</label>
        <input type="button" class="destroy" />
    </div>
    <input type="button" value="{{title}}" class="edit">
</script>

里面的{{ completed ? "checked" : "" }}貌似解析不了,请问是该模板语言不支持吗?(mustache.js)

抱歉,问题解决了,是我把mustache当成了后端的smarty语言,`{{#completed}}checked{{/completed}}`这样就可以了,completed为真就显示,否则不输出</code>
Copy after login
Copy after login

Reply content:

<code><script type="text/template" id="item-template">
    <div class="view">
        <input type="checkbox" class="toggle" {{ completed ? "checked" : "" }} >
        <label for="">{{title}}</label>
        <input type="button" class="destroy" />
    </div>
    <input type="button" value="{{title}}" class="edit">
</script>

里面的{{ completed ? "checked" : "" }}貌似解析不了,请问是该模板语言不支持吗?(mustache.js)

抱歉,问题解决了,是我把mustache当成了后端的smarty语言,`{{#completed}}checked{{/completed}}`这样就可以了,completed为真就显示,否则不输出</code>
Copy after login
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template