开发者

how do i submit a form using get method in jquery

开发者 https://www.devze.com 2023-01-18 10:58 出处:网络
I am aware of sending form values using the method=get <FORM METHOD=get ACTION=\"test.html\"> I have a textbox which captures email. When i submit form using the GET 开发者_开发问答method the

I am aware of sending form values using the method=get

<FORM METHOD=get ACTION="test.html">

I have a textbox which captures email. When i submit form using the GET 开发者_开发问答method the @ is converted to %40. I had read somewhere that Jquery could send the data across by serializing. How can it be done? Thanks


If you want to submit a form using jQuery serialize() and GET method, you can do something like this:

If you use PHP:

Form:

<form action='test.php' method='GET' class='ajaxform'>
   <input type='text' name='email'>
</form>

jQuery:

jQuery(document).ready(function(){

    jQuery('.ajaxform').submit( function() {

        $.ajax({
            url     : $(this).attr('action'),
            type    : $(this).attr('method'),
            data    : $(this).serialize(),
            success : function( response ) {
                        alert( response );
                      }
        });

        return false;
    });

});

In test.php you can get email like this:

$_GET['email']

More Detail:

http://api.jquery.com/jQuery.ajax/


You can use NAVEED's answer to send all the form. Although if you want to send a single field you can use the second parameter of the get function.

jQuery.get( url, [ data ], [ callback(data, textStatus, XMLHttpRequest) ], [ dataType ] )

0

精彩评论

暂无评论...
验证码 换一张
取 消