setTimeout在被重定向到另一个网站后无法正常工作

时间:2016-03-29 19:45:03

标签: jquery redirect

我在localhost:8080

中有这个
"<form action='http://localhost:3000/login#localhost:8080' method='POST''>" +
                    "<input type='email' name='username' label='Username'>Username" +
                    "<input type='password' name='password' label='Password'>Password<br>" +
                    "<input type='submit' value='Login'>" +
                    "</form>"

我想要的是在登录后重定向回localhost:8080,但它现在不起作用。但目前这不是问题,尽管找到类似的重定向方式会很棒。无论如何,这是我的jQuery:

        $('form').submit(function(){
            alert('test');
            setTimeout(function(){
                alert('testagain');
            }, 3000);
        });

alert('test')正在运行,但在我重定向到localhost:3000后,alert('testagain')无效。计划是在这里放置一个代码,将我重定向回localhost:8080,例如window.location。我怎样才能使它工作?或者什么是重定向我的最佳方式?

0 个答案:

没有答案