0

如何在下面的代码中添加重定向 URL 链接到 JS 函数(示例表单操作到:session.php)。我尝试了另一种方式代码,但它仍然无法运行。

$(document).ready(function() {
    $("#submit_butt").click(function() {
        var conf = {
            frequency: 5000,
            spread: 5,
            duration: 600
        };
        /* do your AJAX call and processing here...
        ....
        ....
        */
        // this is the call we make when the AJAX callback function indicates a login failure 
        $("#login").vibrate(conf);

        // let's also display a notification
        if($("#errormsg").text() == "")
            $("#loginform").append('<p id="errormsg">Invalid username or password!</p>');       

        // clear the fields to discourage brute forcing :)
        $("#password").val("");
        document.forms['login_form'].elements['username'].focus();
    });
});
4

4 回答 4

2

你可以试试这个

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

https://developer.mozilla.org/en-US/docs/DOM/window.location

参考:如何在 JavaScript/jQuery 中重定向到另一个网页?

于 2012-09-07T03:46:12.863 回答
1

你可以用这个..

window.location.href = "http://www.google.com";
于 2012-09-07T04:46:19.553 回答
0

你可以试试

 <script>
 function name(){
    window.location ='abc.php';
 }
 </script>
于 2012-09-07T04:35:06.933 回答
-2

你可以通过在你的 javascript 中闯入 php 代码

$(document).ready(function()
{

    <?php 
       someFunction();
    ?>
});

但前提是您的 javascript 在 php 文件中,以便它可以由 php 处理。因此,如果您链​​接到需要更改为 .php 的 .js 文件

于 2012-09-07T03:33:30.263 回答