test.html 532 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wb="http://open.weibo.com/wb" style="overflow: hidden;">
  3. <head>
  4. <script src="./js/xlsx.js" type="text/javascript"></script>
  5. <script src="./js/excel.js" type="text/javascript"></script>
  6. <script>
  7. function test(inputel) {
  8. console.log(exceltoxlxstream(inputel.files[0]));
  9. }
  10. </script>
  11. </head>
  12. <body>
  13. <input type="file" name="excel" id="excel" value="new test" onchange="test(this)" />
  14. </body>
  15. </html>