您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
293B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src='../../../mustache.js'></script>
  5. </head>
  6. <body>Text content to be overwritten<body>
  7. <script>
  8. document.body.textContent = Mustache.render(
  9. '{{title}} spends {{calc}}',
  10. {
  11. title: 'Joe',
  12. calc: () => 2 + 4
  13. });
  14. </script>
  15. </html>