php js脚本查询php,php结合js实现多条件组合查询
本文實例為大家分享了php結合js實現多條件組合查詢的具體代碼,供大家參考,具體內容如下
一、效果圖
二、前端代碼
Jquery分類.templinkactive {
padding:5px;
text-decoration:none;
color:red;
}
.templink {
cursor:pointer;
padding:5px;
text-decoration:none;
}
table{border:1px solid #ccc;}
table tr{ height:35px;}
$(function () {
//品牌
var alink01 = $("#linktype01").find("span");
alink01.click(function () {
alink01.each(function () {
$(this).removeClass("templinkactive").addClass("templink");
});
$(this).removeClass("templink").addClass("templinkactive");
$("#Brand").val($(this).attr("tag"));
SetPara();
});
//價格
var alink02 = $("#linktype02").find("span");
alink02.click(function () {
alink02.each(function () {
$(this).removeClass("templinkactive").addClass("templink");
});
$(this).removeClass("templink").addClass("templinkactive");
$("#Price").val($(this).attr("tag"));
SetPara();
})
//尺寸
var alink03 = $("#linktype03").find("span");
alink03.click(function () {
alink03.each(function () {
$(this).removeClass("templinkactive").addClass("templink");
});
$(this).removeClass("templink").addClass("templinkactive");
$("#Size").val($(this).attr("tag"));
SetPara();
});
});
function SetPara() {
var Brand = $("#Brand").val();
var Price = $("#Price").val();
var Size = $("#Size").val();
alert("1.php?Brand=" + Brand + "&Price=" + Price + "&Size=" + Size);
// var keywords = $("#search").val();
// var skip_url = "http://" + window.location.hostname + window.location.pathname;
// var url = skip_url + "?s=/admin/goods/goods_list/Brand/"+Brand+"/Price/"+Price+"/Size/"+Size;
// window.location.href = url;
// alert(url);
};
/*//TP框架-start
$(function(){
var Brand = $("#Brand").val();
var Price = $("#Price").val();
var Size = $("#Size").val();
// alert(tag);
if(Brand != ''){
$("#linktype01").find("span").removeClass("templinkactive").addClass("templink")
$('span[tag="'+Brand+'"]').css('color','red');
}
if(Price != ''){
$("#linktype02").find("span").removeClass("templinkactive").addClass("templink")
$('span[tag="'+Price+'"]').css('color','red');
}
if(Size != ''){
$("#linktype03").find("span").removeClass("templinkactive").addClass("templink")
$('span[tag="'+Size+'"]').css('color','red');
}
});
//TP框架-end*/
筆記本品牌 | 不限 | 聯想(Lenovo) | 宏碁(Acer) | 華碩(ASUS) | 戴爾(DELL) | 蘋果(Apple) | 三星 (SAMSUNG) |
價格范圍 | 不限 | 1000-2999 | 3000-3499 | 4000-4499 | 5000-5999 | 6000-6999 | 7000及以上 |
尺寸范圍 | 不限 | 8.9英寸及以下 | 11英寸 | 12英寸 | 13英寸 | 14英寸 | 15英寸及以上 |
三、服務端代碼
goodsController.class.php
public function goods_list(){
$Brand= I('Brand');
$Price= I('Price');
$Size= I('Size');
$this->assign('Brand',$Brand);
$this->assign('Price',$Price);
$this->assign('Size',$Size);
$this->display();
}
?>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持。
總結
以上是生活随笔為你收集整理的php js脚本查询php,php结合js实现多条件组合查询的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C/C++中如何使用typedef给函数
- 下一篇: 汇编基础(五)