You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
394 B

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>debug-demo</title>
  6. <script src="../dist/template.js"></script>
  7. </head>
  8. <body>
  9. <h1>错误捕获(请打开控制台)</h1>
  10. <script id="test" type="text/html">
  11. <ul>
  12. {{each list}}
  13. {{/each}}
  14. {{window.alert=null}}
  15. </ul>
  16. </script>
  17. <script>
  18. var html = '';
  19. html = template('test', {});
  20. document.write(html);
  21. </script>
  22. </body>
  23. </html>