[/field:typeid2]
推荐用这种方法,不需要改东西就可以了。另外在网上看到另外一种方法,不过我没做测试,有兴趣的朋友可以试下。
方法二:
首先在 dedecms 目录下 /plus/ 新建文件 type_ajax.php 内容如下:
<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
$action = isset($action) ? trim($action) : '';
$id = (isset($id) && is_numeric($id)) ? $id : 0;
if($id < 1)
{
exit();
}
$maintable = "dede_archives";
$digg = '';
$row = $dsql->GetOne("Select * From dede_archives where id = '$id' ");
$arr = split(",",$row['typeid2']);
foreach ($arr as $key=>$type)
{
$namelist = $dsql->GetOne("Select * From dede_arctype where id = '$type' ");
$digg .= '<a href=http://www.dede58.com/plus/list.php?tid='.$type.'>'.$namelist['typename'].'<a>'." //";
}
AjaxHead();
echo $digg;
exit();
?>
dedecms 模板页调用
在<head>标记之间 加上
<script language="javascript" type="text/javascript" src=http://www.dede58.com/"{dede:global.cfg_cmsurl/}/include/dedeajax2.js"></script>
<script language="javascript" type="text/javascript">
<!--
function gettype(aid)