Issue210.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <html>
  2. <body>
  3. <div>hello</div>
  4. <div className='country-essential-info'>
  5. title
  6. <div id='essential-info-table'>
  7. <table
  8. id='tableID'
  9. width='100%'
  10. marginTop='1rem'
  11. borderCollapse='collapse'
  12. borderSpacing='0'
  13. >
  14. <tbody>
  15. <tr key='1'>
  16. <th rowSpan='2'>
  17. header1
  18. </th>
  19. <th rowSpan='2'>
  20. header2
  21. </th>
  22. <th rowSpan='2'>
  23. header3
  24. </th>
  25. <th rowSpan='2'>
  26. header4
  27. </th>
  28. <th rowSpan='1' colSpan='2'>
  29. header5
  30. </th>
  31. </tr>
  32. <tr key='2'>
  33. <th>
  34. header5LowLeft
  35. </th>
  36. <th>
  37. header5LowRight
  38. </th>
  39. </tr>
  40. </tbody>
  41. </table>
  42. </div>
  43. </div>
  44. </body>
  45. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  46. <script type="text/javascript" src="../libs/FileSaver/FileSaver.min.js"></script>
  47. <script type="text/javascript" src="../libs/jsPDF/jspdf.umd.min.js"></script>
  48. <script type="text/javascript" src="../tableExport.js"></script>
  49. <script type="text/javascript">
  50. $('#tableID').tableExport({
  51. type: 'pdf',
  52. jspdf: {
  53. orientation: 'p',
  54. margins: {left: 20, top: 10},
  55. autotable: false
  56. }
  57. });
  58. </script>
  59. </html>