首页 > 代码库 > jquery 3秒后自动跳转页面

jquery 3秒后自动跳转页面

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>跳转页面</title>
<script src="http://www.mamicode.com/jquery.min.js"></script>
<script language="javascript">
$(function() {
window.setTimeout(function(){
location.href="http://www.mamicode.com/test.html";
}, 1000);
});
</script>
</head>
<body>
<span style="color:red" style="color:red">欢迎来到******!</span><br/>页面将在3秒后跳转...<br/>
</body>
</html>

jquery 3秒后自动跳转页面