多条件筛选功能常用在图片、装修、机械设备、商城网站等,一般筛选的条件是用户较关注的项目,没必要什么条件都加入。DedeCMS多条件筛选PHP开发并不带有删除所选条件功能,PHP筛选和JS筛选原理不一样,实现起来并不复杂。
装修效果图实现多条件联动筛选带删除功能分享给大家。
效果参考图
点击“x”符号即可删除筛选条件。
先参考文章《织梦多条件筛选以筛选词为SEO标题教程》,下载两个必要的文件
修改下载后的extend.func.php文件,找到
}
}
}
}
echo $dede_addonfields;
}
在这段代码之前(switch条件case 2 的下面增加case 3)增加如下代码:
1
2
3
4
5
6
7
8
9
|
case3:
$addonfields_items=explode(",",$ctag->GetAtt('default'));
for($i=0;$i
{
$href=stripos($filterarr,$ctag->GetName().'=')?str_replace("=".$fields_value,"=".urlencode($addonfields_items[$i]),$filterarr):$filterarr.'&'.$ctag->GetName().'='.urlencode($addonfields_items[$i]);//echo$href;
$dede_addonfields.=$fields_value!=urlencode($addonfields_items[$i])?'':'
}
$dede_addonfields.=(preg_match("/&".$ctag->GetName()."=/is",$filterarr,$regm)?'
break;
|
模板部分PHP调用
增加未筛选时不显示“筛选条件”字样,用PHP判断自定义字段不为空则显示。
|
CSS样式
.shaixuanbox{width:100%;height:auto;margin:0 auto 10px;border-bottom:1px solid #c0c0c0} .shaixuan{padding:10px;text-align:left;font-size:14px;line-height:14px} .shaixuan a{margin:0 6px;color:#000} .shaixuan a:hover{color:#32B9AB} .shaixuan .hover,.shaixuan span{padding:0 5px;color:#fff;background:#32B9AB} .tiao{position:relative;padding:0 20px 0 5px;border:1px solid #eee;border-radius:5px;margin-right:5px;} .tiao a{position:absolute;right:5px;top:0;font-size:20px;color:#ccc;line-height:31px;} .tiao a:hover{text-decoration:none;} |