通过$ .ajax GET发送jQuery $ .data对象

时间:2012-01-21 21:02:22

标签: javascript php jquery ajax

我有一个带有一堆输入字段的表单。我想用所有字段做一个ajax GET请求!到目前为止,最简单的方法就是将输入分配给数据对象:

$('#myForm').find('input').each(function(index){ 
    myData = $.data($('#myForm'), $(this).attr('name'), $j(this).val());
});

...然后通过ajax泵送它:

$.ajax({
    type:"GET",
    url: '/otherpage.php',
    data = myData,
    error(function(){}),
    success(function(){});
});

但当然它不起作用...没有$ _GET变量显示在otherpage.php中,并且控制台显示myData是一些巨大的对象交易。

如何通过像这样的Ajax发送数据?有没有更好的办法?

2 个答案:

答案 0 :(得分:6)

使用jQuery serialize();方法:

$.ajax({
    type:"GET",
    url: '/otherpage.php',
    data = $('#myForm').serialize(),
    error(function(){}),
    success(function(){});
});

http://api.jquery.com/serialize/

答案 1 :(得分:1)

$.ajax({
    type:"GET",
    url: '/otherpage.php',
    data = $('#myForm').serialize(),
    error(function(){}),
    success(function(){});
});

希望它会帮助你。