自动刷新
其实自动刷新和跳转没啥区别,刷新就是跳转到本地址。
有几种办法,首先是直接在html的<head>
标签里添加下面的代码。
html代码
代码都放在<head>
标签里。
//每两秒刷新一次
<meta http-equiv="refresh" content="2">
//2s后跳转到百度
<meta http-equiv="refresh" content="2; url=www.baidu.com">
javascript代码
javascript的方法就多种多样了,甚至很多库也有方法。
放一个比较简单的。
function jump(){
location.href="www.baidu.com"; //跳转
//window.location.reload(); //刷新
}
setTimeout(‘jump()‘, 1000); //一秒之后跳转/刷新
大致就这些。
时间: 2024-11-06 21:05:11