Blogger Information
Blog 13
fans 0
comment 0
visits 10516
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
9.29 链接的功能和用途以及表格的制作方法
微光
Original
647 people have browsed it

9.29 链接的功能和用途以及表格的制作方法

1、链接的功能和用途

1.1 target属性“_blank”(在另外的窗口跳转页面)

  1. <a href="https://www.baidu.com/" target="_blank">百度一下</a>

1.2 href属性“url地址”(跳转至一个目标地址)

  1. <a href="https://www.php.cn/" target="_blank">PHP中文网</a>

1.3 download属性(自定义一个下载名)

  1. <a href="https://img.php.cn/upload/course/000/000/001/5d2426f409839992.jpg" download="图片">天龙八部图片</a>

2、表格的制作

2.1 <table>表格中有两个合并属性

  1. colspan:合并列
  2. rowspan:合并行

2.2 表格案列

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>表格</title>
  6. <style>
  7. #font {
  8. font-family: 楷体;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <table border="1" width="700" cellspacing="0" cellpadding="8">
  14. <!-- 主体1 -->
  15. <tbody style="background-color: chartreuse">
  16. <tr id="font">
  17. <th colspan="6">铸鸢家居洗护系列</th>
  18. </tr>
  19. <tr>
  20. <th>序号</th>
  21. <th>查询编码</th>
  22. <th>产品名称</th>
  23. <th>规格</th>
  24. <th>单位</th>
  25. <th>会员单价</th>
  26. </tr>
  27. </tbody>
  28. <!-- 主体2 -->
  29. <tbody>
  30. <tr>
  31. <td>1</td>
  32. <td>1</td>
  33. <td>科信可信洗洁精</td>
  34. <td>20瓶/箱</td>
  35. <td></td>
  36. <td>30.00</td>
  37. </tr>
  38. <tr>
  39. <td>2</td>
  40. <td>2</td>
  41. <td>科信可信洗衣液</td>
  42. <td>20瓶/箱</td>
  43. <td></td>
  44. <td>20.00</td>
  45. </tr>
  46. <tr>
  47. <td>3</td>
  48. <td>3</td>
  49. <td>洗衣片</td>
  50. <td>40盒/箱</td>
  51. <td></td>
  52. <td>20.00</td>
  53. </tr>
  54. <tr>
  55. <td>4</td>
  56. <td>4</td>
  57. <td>润发精华素</td>
  58. <td>20瓶/箱</td>
  59. <td></td>
  60. <td>25.00</td>
  61. </tr>
  62. <tr>
  63. <td rowspan="2">说明</td>
  64. <td colspan="5" rowspan="2"></td>
  65. </tr>
  66. </tbody>
  67. </table>
  68. </body>
  69. </html>
Correcting teacher:天蓬老师天蓬老师

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