print.html 509 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>print-demo</title>
  6. <script src="../dist/template.js"></script>
  7. </head>
  8. <body>
  9. <h1>print</h1>
  10. <script id="test" type="text/html">
  11. <%
  12. if (list) {
  13. print('hello world');
  14. }
  15. %>
  16. </script>
  17. <script>
  18. var html = '';
  19. var data = {
  20. list: [{
  21. type: 'art',
  22. content: '让心灵回归'
  23. }, {
  24. type: 'music',
  25. content: '天籁之音'
  26. }]
  27. };
  28. html = template.render('test', data);
  29. document.write(html);
  30. </script>
  31. </body>
  32. </html>