12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
-
-
- <a id="1" href="hello.html" target="_blank"> 使用blank跳转hello </a>
-
- <br />
- <a href="hello.html" target="_self"> 使用self跳转hello </a>
- <br />
- <a href="hello.html"> 默认跳转到hello </a>
- <br />
-
- <a href="https://www.koobietech.com/#/" target="_blank">四福科技</a>
- <br />
-
- <a href="./base/test.html" target="_blank">test.html</a>
- <br />
-
-
- <a href="/base/test.html" target="_blank">绝对路径下的base test</a>
- </body>
- </html>
|