123456789101112131415161718192021222324252627 |
- <!DOCTYPE html><html><head><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta charset="utf-8">
- <style>
- body{
- font-size:12pt;
- line-height:1.5em;
- }
- li{
- padding:10px 15px;
- }
- </style>
- </head>
- <body>
- <script>
- function c(text){
- let type = "text/plain";
- let blob = new Blob([text], { type });
- let data = [new ClipboardItem({ [type]: blob })];
- navigator.clipboard.write(data)
- }
- </script>
- <ol>
- {{range .}}
- <li><a href="{{.Href}}" class="data" target="_blank" id="{{.Id}}">{{.Title}}</a> <a href="javascript:void(0)" onclick="c('{{.Title}}')">复制</a></li>
- {{end}}
- </ol>
- </body>
- </html>
|