javascript模板定义的最佳位置

时间:2016-10-28 07:28:26

标签: javascript

我想使用javascript tample,但遗憾的是我无法将它们包含在main layout / index.php文件中

示例模板看起来像

<script type="text/x-tmpl" id="tmpl-demo">
    <h3>{%=o.title%}</h3>
    <p>Released under the
    <a href="{%=o.license.url%}">{%=o.license.name%}</a>.</p>
    <h4>Features</h4>
    <ul>
    {% for (var i=0; i<o.features.length; i++) { %}
        <li>{%=o.features[i]%}</li>
    {% } %}
    </ul>
</script> 

有没有办法在javascript文件中声明这样的模板?或者最好的方法是什么?

0 个答案:

没有答案