Blogger Information
Blog 5
fans 0
comment 0
visits 1782
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1017作业
宁静致远
Original
214 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>销售单</title>
  8. </head>
  9. <body>
  10. <table border="1">
  11. <caption>XX公司各部门员工5月份销售单</caption>
  12. <thead>
  13. <tr>
  14. <th>部门</th>
  15. <th>姓名</th>
  16. <th>商品种类</th>
  17. <th>商品名称</th>
  18. <th>商品单价(元)</th>
  19. <th>销售数量(台)</th>
  20. <th>销售额(元)</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr>
  25. <td rowspan="2">销售一部</td>
  26. <td>小张</td>
  27. <td>办公类</td>
  28. <td>HP1005</td>
  29. <td>1800</td>
  30. <td>10</td>
  31. <td>18000</td>
  32. </tr>
  33. <tr>
  34. <td>小李</td>
  35. <td>办公类</td>
  36. <td>HP1003</td>
  37. <td>1500</td>
  38. <td>18</td>
  39. <td>27000</td>
  40. </tr>
  41. <tr>
  42. <td rowspan="2">销售二部</td>
  43. <td>小王</td>
  44. <td>PC电脑</td>
  45. <td>联想</td>
  46. <td>3000</td>
  47. <td>50</td>
  48. <td>150000</td>
  49. </tr>
  50. <tr>
  51. <td>小强</td>
  52. <td>PC电脑</td>
  53. <td>惠普</td>
  54. <td>5000</td>
  55. <td>15</td>
  56. <td>75000</td>
  57. </tr>
  58. </tbody>
  59. <tfoot>
  60. <tr>
  61. <th colspan="3">合计</th>
  62. <th>-</th>
  63. <th>-</th>
  64. <th>93</th>
  65. <th>270000</th>
  66. </tr>
  67. </tfoot>
  68. </table>
  69. </body>
  70. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:效果实现的不错,下次可以直接添加一张运行结果截图再作业中
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post