html自动跳转网址的代码
时间: 2023-01-31 20:01:20 浏览: 895
可以使用 HTML 中的 "meta" 标签来实现自动跳转网址。
具体的代码如下:
```
<meta http-equiv="refresh" content="5;url=http://www.example.com/" />
```
在这段代码中,"content" 属性中的数字 "5" 表示在跳转之前停留的时间(单位为秒),"url" 后面的网址则表示要跳转到的网址。
注意,"meta" 标签必须放在 HTML 文档的 "head" 部分中。
例如,如果你想在 5 秒后自动跳转到 "http://www.example.com",你可以使用如下代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>自动跳转</title>
<meta http-equiv="refresh" content="5;url=http://www.example.com/" />
</head>
<body>
<p>页面将在 5 秒后自动跳转到 <a href="http://www.example.com">http://www.example.com</a>。</p>
</body>
</html>
```
希望这能帮到你!
阅读全文