我创建了一个简单的登录名,用户将在成功登录后进行填写 登录后,他将直接转到另一个显示登录成功消息的页面,现在 我的问题是用户重定向到登录成功按摩页面后 一种在该页面上设置3秒的方法,之后用户将在3秒后返回首页?希望您能够帮助我。谢谢
答案 0 :(得分:1)
在此示例中,我们将创建一个按钮以在2秒后重定向另一页面。当您单击该按钮时,该按钮将对您说“即将重定向....”。 5秒钟后,它将重定向到给定的URL页面。 Full Article: Redirect To Another Page After 5 Seconds?
<!DOCTYPE html>
<html>
<head>
<title>Redirect to Another Page After 5 Seconds - Php Coding Stuff</title>
<script src="https://code.jquery.com/jquery-3.5.1.js" crossorigin="anonymous"></script>
</head>
<body>
<button>Click to redirect</button>
<script type="text/javascript">
$("button").click(function(){
$(this).text('Redirecting After 2 Seconds................');
var delay = 2000;
var url = 'https://www.phpcodingstuff.com/'
setTimeout(function(){ window.location = url; }, delay);
})
</script>
</body>
</html>
答案 1 :(得分:0)
您可以使用setTimeout设置重定向用户的时间,并使用window.location设置应重定向用户的URL
setTimeout(function(){ window.location = "http://www.yoururl.com"; },3000);
答案 2 :(得分:0)
<script type="text/javascript">
$(document).ready(function () {
setTimeout(function () {
window.location = "you Home Page URL";
}, 3000);
});
</script>