添加重定向URL链接到JS功能

时间:2012-09-07 03:25:04

标签: php javascript

如何在下面的代码中添加重定向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 个答案:

答案 0 :(得分: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

参考:How to redirect to another webpage in JavaScript/jQuery?

答案 1 :(得分:1)

你可以用这个..

window.location.href = "http://www.google.com";

答案 2 :(得分:0)

你可以尝试

 <script>
 function name(){
    window.location ='abc.php';
 }
 </script>

答案 3 :(得分:-2)

你可以通过破解你的javascript中的PHP代码

$(document).ready(function()
{

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

但是只有当你的javascript在php文件中时才可以通过php处理。因此,如果您链​​接到需要更改为.php的.js文件