Test04_连接.html 640 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>超链接</title>
  6. </head>
  7. <body>
  8. <!--
  9. 连接标签
  10. a
  11. href= 地址路径/ 页面 / 服务地址
  12. target = 打开方式
  13. _blank 新页面
  14. _self 当前页面
  15. _parent 父页面打开
  16. -->
  17. <a href="https://www.baidu.com" target="_self" >百度一下</a>
  18. <a href="https://www.koobietech.com?name=zs" target="_self" >百度一下</a>
  19. <a href="Test01.html?name=zs" target="_self" >Test01</a>
  20. <a href="#?name=zs" target="_self" >测试数据携带</a>
  21. </body>
  22. </html>