我想要做的是在用户访问此网页时使用它,10秒后将其发送回之前所在的页面。
答案 0 :(得分:1)
您可以尝试setTimeout
和history.back()
(function () {
setTimeout(function () {
history.back();
}, 10000);
})();

答案 1 :(得分:0)
您可以为此设置setTimeout()
功能。
<html>
<head>
<script type="text/javascript">
<!--
function Redirect() {
window.location="https://www.google.lk/";
}
document.write("You will be redirected to main page in 10 sec.");
setTimeout('Redirect()', 10000);
//-->
</script>
</head>
<body>
</body>
</html>
答案 2 :(得分:0)
要返回访问者10秒后来自的页面,您可以使用以下内容:
setTimeout(function(){
document.location = document.referrer}
,10000)
答案 3 :(得分:0)
只包含jquery库并添加此代码
这将在10秒后重定向到window.location
上声明的页面
$(window).load(function(){
setTimeout(function(){
window.location = yourpage.html
}, 10000);
});