DedeCms分类信息联动筛选,省级与地市分开联动

生命中,好多的事是这样,生活中,好多的情是这样,没有理由,也无需理由,爱就是爱,喜欢就是喜欢,没有结果,也无须结果,心甘情愿,无怨无悔。

DedeCms分类信息联动筛选,省级与地市分开联动,注意:只适用于5.6版,其它版本没有测试,只应用于分类信息模型。其它联动可参照修改。

可能标题说的不是很清楚,下面以图为示例:

如上图所示,默认是显示北京的区县,当点击上海市时,地市处显示上海的县区。这下大家伙明白了吧!

现在开始代码修改操作,只需要修改一个文件。

打开/include/taglib/infolink.lib.php,找到:

Copy to Clipboard引用的内容:[www.veryhuo.com]
//地区链接 
if(empty($nativeplace)) 
{ 
foreach($em_nativeplaces as $eid=>$em) 
{ 
if($eid % 500 != 0) continue; 
$fields['nativeplace'] .= " <a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$eid}&infotype={$infotype}'>{$em}</a>\r\n"; 
} 
} 
else 
{ 
$sontype = ( ($nativeplace % 500 != 0) ? $nativeplace : 0 ); 
$toptype = ( ($nativeplace % 500 == 0) ? $nativeplace : ( $nativeplace-($nativeplace%500) ) ); 
$fields['nativeplace'] = "<a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$toptype}&infotype={$infotype}'><b>{$em_nativeplaces[$toptype]}</b></a> >> "; 
foreach($em_nativeplaces as $eid=>$em) 
{ 
if($eid < $toptype+1 || $eid > $toptype+499) continue; 
if($eid == $nativeplace) { 
$fields['nativeplace'] .= " <b>{$em}</b>\r\n"; 
} 
else { 
$fields['nativeplace'] .= " <a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$eid}&infotype={$infotype}'>{$em}</a>\r\n"; 
} 
} 
} 

把上面注释掉,然后在下面添加如下代码:

Copy to ClipboardLiehuo.Net Codes引用的内容:[www.veryhuo.com]
foreach($em_nativeplaces as $eid=>$em) 
{ 
if($eid % 500 != 0) continue; 
$fields['nativeplace'] .= " <a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$eid}'>{$em}</a>\r\n"; 
} 
//地区链接 
if(empty($nativeplace)) 
{ 
foreach($em_nativeplaces as $eid=>$em) 
{ 
if($eid > 999 ) continue; 
$fields['diqu'] .= " <a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$eid}'>{$em}</a>\r\n"; 
} 

} 
else 
{ 
$sontype = ( ($nativeplace % 500 != 0) ? $nativeplace : 0 ); 
$toptype = ( ($nativeplace % 500 == 0) ? $nativeplace : ( $nativeplace-($nativeplace%500) ) ); 

foreach($em_nativeplaces as $eid=>$em) 
{ 
if($eid < $toptype+1 || $eid > $toptype+499) continue; 
if($eid == $nativeplace) { 
$fields['diqu'] .= " <b><a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$nativeplace}'>{$em}</a></b>\r\n"; 
} 
else { 
$fields['diqu'] .= " <a rel="nofollow noopener noreferrer" href='{$baseurl}plus/list.php?channelid={$channelid}&tid={$typeid}&nativeplace={$eid}'>{$em}</a>\r\n"; 
} 
} 
} 

保存就可以了。谢谢阅读烈火网提供的DedeCMS好代码教程。

本文DedeCms分类信息联动筛选,省级与地市分开联动到此结束。人,一简单就欢乐,但欢乐的人寥寥无几;一复杂就痛苦,可痛苦的人却熙熙攘攘。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
dedecms织梦分类信息调用标签方法

dede5.7联动枚举类型在分类信息中无法更新问题的如何解决办法

DedeCMS 首页分类信息两列调用方法

Dedecms 分类信息地区名在列表标题title显示

让DedeCms分类信息模型支持Digg功能