Stock Processing
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

21 行
783 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= title %></title>
  5. <link rel='stylesheet' href='/stylesheets/style.css' />
  6. <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css">
  7. </head>
  8. <body>
  9. <h1><%= title %></h1>
  10. <form action="/" method="POST">
  11. <input name="filePDF" type="file" id="filePicker">
  12. <input type="submit">
  13. </form>
  14. <table id="myTable"></table>
  15. </body>
  16. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  17. <script src="https://cdn.sheetjs.com/xlsx-latest/package/dist/xlsx.full.min.js"></script>
  18. <script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
  19. <script src="./javascripts/main.js"></script>
  20. </html>