tpl.html 600 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html><html><head><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta charset="utf-8">
  2. <style>
  3. body{
  4. font-size:12pt;
  5. line-height:1.5em;
  6. }
  7. li{
  8. padding:10px 15px;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <script>
  14. function c(text){
  15. let type = "text/plain";
  16. let blob = new Blob([text], { type });
  17. let data = [new ClipboardItem({ [type]: blob })];
  18. navigator.clipboard.write(data)
  19. }
  20. </script>
  21. <ol>
  22. {{range .}}
  23. <li><a href="{{.Href}}" class="data" target="_blank" id="{{.Id}}">{{.Title}}</a> <a href="javascript:void(0)" onclick="c('{{.Title}}')">复制</a></li>
  24. {{end}}
  25. </ol>
  26. </body>
  27. </html>