index.html 698 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <link rel="icon" href="./favicon.ico" />
  8. <link rel="stylesheet" href="./index.css" />
  9. <title>Rollup UMD</title>
  10. </head>
  11. <body>
  12. <h1 id="label">rollup</h1>
  13. <div class="upload-btn" onclick="fileInput()">批量导入</div>
  14. <p>设置一个隐藏域,用来导入文件</p>
  15. <input type="file" name="file" accept=".xlsx, .xls" id="fileReader" style="display: none" onchange="fileChange();" />
  16. <script src="../dist/mjs.js"></script>
  17. <script src="./index.js"></script>
  18. </body>
  19. </html>