我们编写HTML页面的时候,经常需要实现页面之间的跳转功能。HTML页面之间的跳转包括refresh方式跳转,location方式跳转,history方式跳转。下面我就给大家分别介绍一下这三种跳转方式。
refresh方式跳转refresh方式的跳转直接在head的meta标签里面添加就可以了,如下图所示,通过url设置跳转路径
如果refresh中不指定url,则是本页面刷新,如下图所示
location方式跳转location方式的跳转需要在js中进行调用,通过调用它下面的href属性完成跳转,如下图所示
另外还可以用setTimeOut为location跳转指定一个时间,如下图所示
history方式跳转history方式的跳转可以直接在HTML中写,如下图所示
同时也可以通过点击按钮,在JS中调用history进行跳转,如下图所示
方法1:
最简单的一种:直接在前面<head>里面添加代码:
复制代码代码如下:
<span style="font-size:18px"></span><span style="font-size:24px"><meta http-equiv="refresh" content="3URL=res.html"></span>
<span style="font-size:24px">//3秒之后自动跳转到res.html,两个属于同一文件下面,要是需要跳转到jsp页面,就需要在url里面填写url地址————(浏览器的'地址栏里面写入的数据,如:http://localhost:8080/TestDemo/1.jsp)</span>
方法2:
需要用到window里面的方法:
setTimeout 经过指定毫秒值后计算一个表达式。
例子:
复制代码代码如下:
window.setTimeout("alert('Hello, world')", 1000)
这个是写在js代码里面的;
具体实现如下:
复制代码代码如下:
<script type="text/javascript">
onload=function(){ <span style="white-space:pre"></span>//在进入网页的时候加载该方法
setTimeout(go, 3000)<span style="white-space:pre"></span>/*在js中是ms的单位*/
}
function go(){
location.href="http://localhost:8080/TestDemo/index.jsp"
}
</script>
//3秒之后自动执行go方法,直接跳转到index.jsp页面
方法3:
上面两个例子的缺陷就是能够实现跳转,但是不知道是什么时候跳转.实现倒数3-2-1;
settimeout方法已经做不了了;
setInterval 每经过指定毫秒值后计算一个表达式。
没过相同的时间,就会执行相应的函数。具体的实现方法:
复制代码代码如下:
<script type="text/javascript">
onload=function(){
setInterval(go, 1000)
}
var x=3//利用了全局变量来执行
function go(){
x--
if(x>0){
document.getElementById("sp").innerHTML=x//每次设置的x的值都不一样了。
}else{
location.href='res.html'
}
}
</script>
1:定时器····
<html>
<head>
<script>
/*
setTimeout 设置过期时间
setTimeout(时间到了之后要执行的行为,什么时间 毫秒 开始执行)
setInterval 设置中断时间
setInterval(时间到了之后要执行的行为 , 间隔多长时间再执行 )
*/
</html>
····
2:一闪一闪亮晶晶
····
html>
<head>
<style>
#container{
width: 400px
height: 400px
border: 1px solid yellowgreen
background-color: black
position: relative
}
</html>
····
3:定时跳转网页
····
<html>
<head>
<style>
#box{
width: 1300px
height: 100px
line-height: 100px
border: 1px solid black
color: yellowgreen
font: 29/30px "simsun"
text-align: center
}
</style>
</html>
····
4:弹窗
····
<html>
<head>
<script>
alert("我是弹窗")
window.alert("全写的窗口弹窗")
</html>
····