让网页在打开几秒之后就转向其它的页面
时间:2021-07-01 10:21:17
帮助过:7人阅读
只要加入以下的代码就可以实现。
第一种方法:使用Meta 用法: <Meta http-equiv=Refresh Content=30>
<Meta http-equiv="Refresh" Content="5; Url=http://sc.jb51.net">
其中第一条语句是停留30秒自动刷新,第二条是停留5秒转向sc.jb51.net。分别使用可实现自动刷新或自动转向功能。
第二种:js实现
setTimeout(function(){window.location.href = 'http://sc.jb51.net';},2000)
第三种带倒计时的js代码
人气教程排行