$sql=select * from table where 1=1
四个下拉框 实际上就是四种 检索条件,在拼接sql的时候分别判断举唤这四个下拉框是否有值 有的话 $sql.="条毕顷件1",
$sql.=“&&条件2”;
以此类推
ajax分页的时候 需要传递的值有 分页的偏正数凯移量,sql语句中的 limit的 开始位置
我粗消就是做PHP和枣凳简jquery的,你的代码很多没必要的,你能不能简化一下,发一下相关的php代码和jquery给我?就只要ajax和php处理凳裤代码就OK了
第一个问题:
假如你四个下拉的name分别为select1,select2,select3,select4,以post方式传,在php页可以这样:
$where='';
if($_POST['select1']){
$where.="and select1 like '%".$_POST['select1']."%'";
}
if($_POST['select2']){
$where.="and select2 like '%".$_POST['select2']."%'";
}
........一直到select4
$sql="select * from table where (1=1) ". $where." limit .....;
第二个问题:
你可以参照这个
前端页:
$.ajax({
type: 'POST',
url: 'ajaxpage.php',
data: {'pageNum':page-1,'classid':classid},
dataType:'json',
beforeSend:function(){ alert('loading...'););//显示加载动画
},
success:function(msg){
var json=eval(msg);
total = json.total; //总记录数
if(total==0){
alert('无相关记录');
}else{
pageSize = json.pageSize; //每页显示条数
curPage = page; //当前页
totalPage = json.totalPage;//总页数
list = json.list;
$.each(list,function(index,array){ //遍历json数兄段据列
alert(array['id']+array['name']);
});
}
},
complete:function(){ //生成分页条
getPageBar(total,curPage,totalPage,classid,code);
},
error:function(){
alert("漏凳数据加载失败");
}
});
//获取分页条
function getPageBar(total,curPage,totalPage,classid,code){
if(total!=0){
//页码大于最大页数
if(curPage>totalPage) curPage=totalPage;
//页码小于1
if(curPage<1) curPage=1;
pageStr = "