我已下载了jquery插件Quick Filter for Jquery,我尝试将其用于ajax发布结果,但它无效。有没有人知道什么可能是错的或如何修改它?
直接链接到jquery插件: https://github.com/bdelespierre/jquery-quickfilter/blob/master/jquery.quickfilter-0.0.1.js
这就是jquery请求的样子:
$('#cam').change(function(e){
serializedData = $("#thisid").serialize() ;
$.ajax({
url: "/results.php",
type: "post",
data: serializedData,
success: function(response, textStatus, jqXHR){
$('#cam-list').html(response);
}
});
});