1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>超链接</title>
- </head>
- <body>
- <!--
- 连接标签
- a
- href= 地址路径/ 页面 / 服务地址
- target = 打开方式
- _blank 新页面
- _self 当前页面
- _parent 父页面打开
- -->
- <a href="https://www.baidu.com" target="_self" >百度一下</a>
- <a href="https://www.koobietech.com?name=zs" target="_self" >百度一下</a>
- <a href="Test01.html?name=zs" target="_self" >Test01</a>
- <a href="#?name=zs" target="_self" >测试数据携带</a>
- </body>
- </html>
|