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