12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>print-demo</title>
- <script src="../dist/template.js"></script>
- </head>
- <body>
- <h1>print</h1>
- <script id="test" type="text/html">
- <%
- if (list) {
- print('hello world');
- }
- %>
- </script>
- <script>
- var html = '';
- var data = {
- list: [{
- type: 'art',
- content: '让心灵回归'
- }, {
- type: 'music',
- content: '天籁之音'
- }]
- };
- html = template.render('test', data);
- document.write(html);
- </script>
- </body>
- </html>
|