最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

authentication - Delay on redirect (Javascript) - Stack Overflow

programmeradmin1浏览0评论

My JS wont cooperate and redirect... Can anyone see my problem? Tried all day, it's like nothing works :(

function validate(form) {
    if (form.username.value==="admin") { 
        if (form.password.value==="1") {
            $('#loginLock').css({opacity: 0});
            $('#loginUnlock').css({opacity: 1});
            document.cookie="username=Admin";
            setTimeout(function(){ window.location.replace = 'vault.php';}, 1500);
        } else {
            alert("Forkert brugernavn eller password");
        }
    } else {
        alert("Forkert brugernavn eller password");
    }
}

My JS wont cooperate and redirect... Can anyone see my problem? Tried all day, it's like nothing works :(

function validate(form) {
    if (form.username.value==="admin") { 
        if (form.password.value==="1") {
            $('#loginLock').css({opacity: 0});
            $('#loginUnlock').css({opacity: 1});
            document.cookie="username=Admin";
            setTimeout(function(){ window.location.replace = 'vault.php';}, 1500);
        } else {
            alert("Forkert brugernavn eller password");
        }
    } else {
        alert("Forkert brugernavn eller password");
    }
}
Share Improve this question edited Apr 29, 2014 at 13:53 WhoAreYou asked Apr 29, 2014 at 13:48 WhoAreYouWhoAreYou 431 silver badge4 bronze badges 1
  • 2 change window.location.replace to window.location.href – A1rPun Commented Apr 29, 2014 at 13:51
Add a ment  | 

3 Answers 3

Reset to default 6

You can use window.location.href

 setTimeout(function(){ window.location.href= 'vault.php';}, 1500);

instead of

setTimeout(function(){ window.location.replace = 'vault.php';}, 1500);

Use javascript's setTimeout method:

// redirect to google after 5 seconds
window.setTimeout(function() {
    window.location.href = 'http://www.google.';
}, 5000);

Why are using window.location.replace? Maybe tha'ts the problem!

**assign(url):** Load the document at the provided URL.
**replace(url):** Replace the current document with the one at the provided URL. The difference from the  assign() method is that after using  replace() the current page will not be saved in session history, meaning the user won't be able to use the Back button to navigate to it.

Try using just windows.location.url = ""; And about usin jQuery, just use setTimeOut JS method. Don't mix if not necessary jQuery and Javascript

发布评论

评论列表(0)

  1. 暂无评论