博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTML页面跳转的5种方法
阅读量:6520 次
发布时间:2019-06-24

本文共 2329 字,大约阅读时间需要 7 分钟。

下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的hello.html(根据自己需要自行修改)文件。

1) html的实现

 

 

1
2
3
4
5
6
<
head
>
<!-- 以下方式只是刷新不跳转到其他页面 -->
<
meta
http-equiv="refresh" content="10">
<!-- 以下方式定时转到其他页面 -->
<
meta
http-equiv="refresh" content="5;url=hello.html">
</
head
>

优点:简单

缺点:Struts Tiles中无法使用

 

2) javascript的实现

 

1
2
3
4
5
6
<script language=
"javascript"
type=
"text/javascript"
>
// 以下方式直接跳转
window.location.href=
'hello.html'
;
// 以下方式定时跳转
setTimeout(
"javascript:location.href='hello.html'"
, 5000);
</script>

优点:灵活,可以结合更多的其他功能

缺点:受到不同浏览器的影响
3) 结合了倒数的javascript实现(IE)

 

1
2
3
4
5
6
7
8
9
<
span
id="totalSecond">5</
span
>
<
script
language="javascript" type="text/javascript">
var second = totalSecond.innerText;
setInterval("redirect()", 1000);
function redirect(){
totalSecond.innerText=--second;
if(second<
0
) location.href='hello.html';
}
</script>

优点:更人性化

缺点:firefox不支持(firefox不支持span、div等的innerText属性)
3') 结合了倒数的javascript实现(firefox)

1
2
3
4
5
6
7
8
9
<script language=
"javascript"
type=
"text/javascript"
>
var
second = document.getElementById(
'totalSecond'
).textContent;
setInterval(
"redirect()"
, 1000);
function
redirect()
{
document.getElementById(
'totalSecond'
).textContent = --second;
if
(second < 0) location.href =
'hello.html'
;
}
</script>

4) 解决Firefox不支持innerText的问题

 

1
2
3
4
5
6
7
8
<
span
id="totalSecond">5</
span
>
<
script
language="javascript" type="text/javascript">
if(navigator.appName.indexOf("Explorer") > -1){
document.getElementById('totalSecond').innerText = "my text innerText";
} else{
document.getElementById('totalSecond').textContent = "my text textContent";
}
</
script
>

5) 整合3)和3')

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<
span
id="totalSecond">5</
span
>
 
<
script
language="javascript" type="text/javascript">
var second = document.getElementById('totalSecond').textContent;
 
if (navigator.appName.indexOf("Explorer") > -1)  {
    
second = document.getElementById('totalSecond').innerText;
} else {
    
second = document.getElementById('totalSecond').textContent;
}
 
setInterval("redirect()", 1000);
function redirect() {
if (second <
0
) {
    
location.href = 'hello.html';
} else {
    
if (navigator.appName.indexOf("Explorer") > -1) {
        
document.getElementById('totalSecond').innerText = second--;
    
} else {
        
document.getElementById('totalSecond').textContent = second--;
    
}
}
}
</
script
>

转载地址:http://ugubo.baihongyu.com/

你可能感兴趣的文章
优化LibreOffice如此简单
查看>>
【Oracle 数据迁移】环境oracle 11gR2,exp无法导出空表的表结构【转载】
查看>>
秒杀系统设计方案
查看>>
3D印花芭蕾舞鞋为舞者科学地保护双脚
查看>>
冲浪科技获Ventech China数百万美元天使轮融资,发力自动驾驶行业
查看>>
通过ActionTrail监控AccessKey的使用
查看>>
从 JavaScript 到 TypeScript
查看>>
一个mysql复制中断的案例
查看>>
【最佳实践】OSS开源工具ossutil-大文件断点续传
查看>>
Linux常用的服务器构建
查看>>
深入了解 Weex
查看>>
Android第三方开源FloatingActionButton(com.getbase.floatingactionbutton)【1】
查看>>
【75位联合作者Nature重磅】AI药神:机器学习模型有望提前五年预测白血病!
查看>>
精通SpringBoot——第二篇:视图解析器,静态资源和区域配置
查看>>
JavaScript基础(六)面向对象
查看>>
总结几点Quartz的经验
查看>>
从veth看虚拟网络设备的qdisc
查看>>
企业的最佳选择?开放式混合云大行其道
查看>>
物联网、自动化的冲击下未来20年职场六大趋势
查看>>
《Java核心技术 卷Ⅱ 高级特性(原书第10版)》一3.6.2 使用StAX解析器
查看>>