当前位置 : 主页 > 网页制作 > html >

html怎么重定向跳转页面

来源:互联网 收集:自由互联 发布时间:2022-06-23
跳转方法:1、用meta标签,语法“meta http-equiv=refresh content=时间; url=跳转地址”;2、借助js,在script标签中添加“window.location=跳转地址”代码进行跳转。 本教程操作环境:windows7系统、

跳转方法:1、用meta标签,语法“<meta http-equiv="refresh" content="时间; url=跳转地址">”;2、借助js,在script标签中添加“window.location="跳转地址"”代码进行跳转。

本教程操作环境:windows7系统、javascript1.8.5&&HTML5版、Dell G3电脑。

html重定向跳转页面的方法

1、利用meta标签

<head>
<meta http-equiv="refresh" content="5; url=https://www.php.cn/">
</head>

1.gif

2、借助js

<script type="text/javascript">
	window.location = "http://www.baidu.com";
</script>

2.gif

推荐教程:《html视频教程》

以上就是html怎么重定向跳转页面的详细内容,更多请关注自由互联其它相关文章!

【文章原创作者:华为云代理 http://www.558idc.com/hw.html处的文章,转载请说明出处】
上一篇:html中em是什么
下一篇:没有了
网友评论