我目前正在尝试将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;
});
});
答案 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;
});
});