跳转页面的方法:1、html中可以利用meta标签进行跳转,语法“”;2、javascript中可以利用location对象的href属性进行跳转,语法“window.location.href=页面地址”。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
html/JavaScript实现页面跳转
1、html中使用meta中跳转,通过meta可以设置跳转时间和页面
<head>
<!--只是刷新不跳转到其他页面 -->
<meta http-equiv="refresh" content="5">
<!--定时转到其他页面 -->
<meta http-equiv="refresh" content="5;url=index.html">
</head>
2、通过javascript中实现跳转
1 // 直接跳转
2 window.location.href='index.html';
3 // 定时跳转
4 setTimeout("javascript:location.href='index.html'", 5000);
html跳转上一页的方式
window.history.go(-1);或者window.history.back(-1);
<script type="text/javascript">
var wrong = document.getElementById('btn');
wrong.onclick = function() {
window.history.go(-1);//返回上一页
window.history.back(-1);//返回上一页
}
</script>
在html中写
<a href=”#” onClick=”JavaScript :history.back(1);”>返回上一页</a>
<a href=”#” onClick=”javascript :history.Go(-1);”>返回上一页</a>
【推荐学习:javascript高级教程】
以上就是html/JavaScript怎么跳转页面的详细内容,更多请关注AdminJS其它相关文章!
声明:本文仅供个人学习使用,来源于互联网,本文有改动,本文遵循[BY-NC-SA]协议, 如有侵犯您的权益,请联系本站,本站将在第一时间删除。谢谢你
原文地址:html js跳转