1.meta 标签
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" http-equiv="refresh" content="0;URL=http://www.csdn.net"/>
</head>
<body>
<h2>This is Page 1 .</h2>
</body>
</html>
2.window.location = "newurl"
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script>
window.location = "http://www.csdn.net";
</script>
</head>
<body>
<h2>This is Page 1 .</h2>
</body>
</html>
3.window.location.replace
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script>
window.location.replace("http://www.csdn.net");
</script>
</head>
<body>
<h2>This is Page 1 .</h2>
</body>
</html>