js跳转代码和header跳转代码
作者:佳明妈 来源:jquery特效 2015-03-08 人气:js跳转代码window.location.href='http://www.51xuediannao.com/';和header跳转代码:http-equiv="refresh" content="5;url=http://www.51xuediannao.com/"
header跳转代码只需要在网页head区域添加如下代码即可:
<head>
<!-- 以下方式定时转到其他页面 -->
<meta http-equiv="refresh" content="5;url=http://www.51xuediannao.com/">
</head>
其中 content="时间;url=网址参数"
如果您想定时跳转 可以使用如下代码:其中 content="时间;url=网址参数"
如果不带url这个参数,意思是指刷新页面 如:
<meta http-equiv="refresh" content="10">
<meta http-equiv="refresh" content="10">
js跳转代码:
<script>
// 以下方式直接跳转
window.location.href='http://www.51xuediannao.com/';
</script>
setTimeout(function(){
window.location.href='http://www.51xuediannao.com/';
}, 5000);
window.location.href='http://www.51xuediannao.com/';
}, 5000);
↓ 查看全文
js跳转代码和header跳转代码由懒人建站收集整理,您可以自由传播,请主动带上本文链接
懒人建站就是免费分享,觉得有用就多来支持一下,没有能帮到您,懒人也只能表示遗憾,希望有一天能帮到您。
js跳转代码和header跳转代码-最新评论