本文摘自PHP中文网,作者青灯夜游,侵删。
跳转页面的方法:1、html中可以利用meta标签进行跳转,语法“”;2、javascript中可以利用location对象的href属性进行跳转,语法“window.location.href=页面地址”。

本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
html/JavaScript实现页面跳转
1、html中使用meta中跳转,通过meta可以设置跳转时间和页面
1 2 3 4 5 6 | <head>
<!--只是刷新不跳转到其他页面 -->
<meta http-equiv= "refresh" content= "5" >
<!--定时转到其他页面 -->
<meta http-equiv= "refresh" content= "5;url=index.html" >
</head>
|
2、通过javascript中实现跳转
1 2 3 4 | 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);
1 2 3 4 5 6 7 | <script type= "text/javascript" >
var wrong = document.getElementById( 'btn' );
wrong.onclick = function () {
window.history.go(-1);
window.history.back(-1);
}
</script>
|
在html中写
1 2 | <a href=”#” onClick=”JavaScript :history.back(1);”>返回上一页</a>
<a href=”#” onClick=”javascript :history.Go(-1);”>返回上一页</a>
|
【推荐学习:javascript高级教程】
以上就是html/JavaScript怎么跳转页面的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
javascript时间转换的方法
一纸搞懂js系列(1)之编译原理,作用域,作用域链,变量提升,暂时性死区
react中的Html转义写法
java和javascript啥关系
怎样用 tensorflow.js 创建基本的 ai 模型?
添加背景音乐的Html标签是什么
怎么在Html中隐藏一段文字
canvas跨域的解决方案介绍
javascript最后怎么表示
javascript怎么把字符串转换为数组
更多相关阅读请进入《Html》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » html/JavaScript怎么跳转页面