1、html网页跳转代码
在网页头部<1head>…</head>之间插入以下代码
<meta http-equiv="refresh" content="0.1;url=https://www.cnblogs.com/">
其中:content="0.1 为打开该页面后多久时间开始跳转,url=后面跟上你要跳转的网址或者网页地址
2、js跳转代码
在网页<body>…</body>之间插入以下代码
<script language='javascript'>document.location = 'https://www.cnblogs.com/'</script>
第二种跳转方法
<script language="javascript" type="text/javascript">
// 以下方式直接跳转
window.location.href='https://www.cnblogs.com/';
//5秒后定时跳转
setTimeout("javascript:location.href='https://www.cnblogs.com/'", 5000);
//另一种写法的定时跳转
setTimeout(function() { window.location.href = 'https://www.cnblogs.com/'; }, 3000 );
</script>
3、asp网页跳转代码
<%
Response.Redirect("https://www.cnblogs.com/")
Response.End
%>
4、php网页跳转代码
<?php header("location: https://www.cnblogs.com/"); ?>