Blogger Information
Blog 8
fans 0
comment 0
visits 8399
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
a标签、列表
努力努力再努力
Original
943 people have browsed it

1.a标签的用法

  1. <body>
  2. <!--跳转地址
  3. target属性:
  4. 默认值_self :直接在当前页面打开
  5. _blank:重新打开一个页面
  6. -->
  7. <a href="https://php.cn" target="_self">php中文网</a>
  8. <a href="https://php.cn" target="_blank">php中文网</a>
  9. <!-- 下载文件 -->
  10. <a href="http://127.0.0.1:5500/全球看点V3.1.vmp.zip">下载</a>
  11. <!--发送邮件-->
  12. <a href="mailto:youemail@mail.com">告诉我们</a>
  13. <!--手机端拨打电话 -->
  14. <a href="tel:12312312312">联系我们</a>
  15. <!-- 手机端发送信息 -->
  16. <a href="sms:123123123">发送短信</a>
  17. <!-- 锚点 -->
  18. <a href="#into">锚点</a>
  19. <p id="into">锚点</pre>
  20. </body>

2.列表(三种):有序列表、无序列表、自定义列表

  1. <body>
  2. <!-- 有序列表 -->
  3. <h2>有序列表:电视剧</h2>
  4. <ol type="A">
  5. <li><a href="">大陆</a></li>
  6. <li><a href="">韩剧</a></li>
  7. <li><a href="">美剧</a></li>
  8. <li><a href="">泰剧</a></li>
  9. </ol>
  10. <!-- 无序列表 -->
  11. <h2>编程</h2>
  12. <ul type="square">
  13. <li><a href="">php</a></li>
  14. <li><a href="">java</a></li>
  15. <li><a href="">html</a></li>
  16. <li><a href="">javascript</a></li>
  17. </ul>
  18. <!-- 自定义列表 -->
  19. <h2>联系我们</h2>
  20. <dl>
  21. <dt>邮件</dt>
  22. <dd><a href="mailto:2313131@qq.com">313131@qq.com</a></dd>
  23. <dt>电话</dt>
  24. <dd><a href="tel:12313131">12313131</a></dd>
  25. </dl>
  26. </body>
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