Form Submit URL Formatting

前端 未结 3 803
失恋的感觉
失恋的感觉 2020-12-21 07:13

I have a form which when submitted goes to the url \"signup.php?username=xx\" where xx is an input field. Instead of this I was wondering if I could get it to go to the foll

3条回答
  •  一向
    一向 (楼主)
    2020-12-21 08:05

    You need to use Javascript and some type of .htaccess for that. But why don't you use POST instead of GET?

    I don't want singup?username=sawny&password=1234 in my history.

    EDIT:

    I had done something like this:

    $(document).ready(function() {
        $("submit[name='foo']").live('submit', function() {
    
            var usr = $("form input[name='user']").val();
            $("form input[name='user']").remove(); //Else it will be singup/usr?user=
    
            $("form[name='bar']").attr("action", "singup/"+ usr);
        });
    });
    

    and then the regexp @zero posted in a .htaccess file.

提交回复
热议问题