JavaScript序列化无法正常工作

时间:2013-02-16 01:24:03

标签: javascript jquery ajax

我目前正在尝试将jj用于ajax,但是有一行代码不想工作。我将在下面显示我收到的错误:

  

TypeError:$(...)。searialize不是函数

有错误的行是:

    var info = $(this).searialize();

这是代码:

$(document).ready(function() {

  $("#SearchField").submit(function(e) {

    e.preventDefault();

    // grabs all post variables in the form
    var info = $(this).searialize();

    $.post('dictionary.php', info, function(data) {

    $('.DictionaryContentWrapper').append(data);

    });

    // prevent server from refreshing page
    return false;

  });
});

1 个答案:

答案 0 :(得分:1)

$(document).ready(function() {

  $("#SearchField").submit(function(e) {

    e.preventDefault();

    // grabs all post variables in the form
    var info = $(this).serialize(); //not searialize

    $.post('dictionary.php', info, function(data) {

    $('.DictionaryContentWrapper').append(data);

    });

    // prevent server from refreshing page
    return false;

  });
});