1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>tmpl-demo</title>
- <script src="../dist/template.js"></script>
- </head>
- <body>
- <h1>与tmpl兼容</h1>
- <script id="test" type="text/html">
- <% if (title) { %>
- <h3><%= title %></h3>
- <% } else { %>
- <h3>无标题</h3>
- <% } %>
- <ul>
- <% for (var i = 0; i < list.length; i ++) { %>
- <li>索引 <%= i + 1 %> :<%= list[i] %></li>
- <% } %>
- </ul>
- </script>
- <script>
- // 模拟tmpl的api
- var tmpl = template;
- template.helper('tmpl', template.render);
- template.isEscape = false;
- var html = '';
- var data = {
- title: '我的标签',
- list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']
- };
- html = tmpl('test', data);
- document.write(html);
- </script>
- </body>
- </html>
|