0

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

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;

  });
});
4

1 回答 1

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;

  });
});
于 2013-02-16T01:26:43.667 回答