html跳转代码:1、“meta http-equiv=refresh content=秒数;url=网址”;2、“a href=网址文本/a”;3、“window.location.href = 网址;”。 本教程操作环境:windows7系统、HTML5javascript1.8.5版、Dell G3电脑。
html跳转代码:1、“<meta http-equiv="refresh" content="秒数;url=网址">”;2、“<a href="网址">文本</a>”;3、“window.location.href = '网址';”。
本教程操作环境:windows7系统、HTML5&&javascript1.8.5版、Dell G3电脑。
HTML metal跳转
在HTML页中,可以使用meta标签进入页面的跳转,此方法可以控制跳转的时间,以及自由化的定义跳转的网址
html跳转代码如下
<meta http-equiv="refresh" content="5;url=https://www.php.cn">
代码解释
看上在的代码,meta 标签中有一个content属性,表示打开此页面后,多少秒后开启跳转。还有个URL属性,表示跳转的网址
HTML中A标签跳转
HTML中的A标签也可以看做为页面跳转的一种,只是通过鼠标点击的方式进入跳转
html A标签跳转代码如下
<a href="https://www.php.cn">自由互联</a>
javascript代码跳转
在网页利用jjs也可以实现页面的跳转或定时跳转
JS跳转代码如下
<script language="javascript" type="text/javascript"> // 以下方式直接跳转 //自由互联 window.location.href = 'https://www.php.cn/'; // 五秒以后再跳转 setTimeout("javascript:location.href='https://www.php.cn'", 5000); </script>
【相关推荐:javascript学习教程】
以上就是html网址跳转代码是什么的详细内容,更多请关注自由互联其它相关文章!