dedecms默認(rèn)模板的channelartlist是不支持currentstyle屬性的。currentstyle屬性在導(dǎo)航中應(yīng)用的比較多,可以實(shí)現(xiàn)循環(huán)調(diào)用欄目后,當(dāng)前頁(yè)<li>標(biāo)簽獲得一個(gè)class="自定義命名"的屬性,具體作用就不做說(shuō)明了,需要修改文件。
找到:
$pv->Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]);
//讓channelarclist支持currentstyle屬性 if($typeids[$i]['id'] == $refObj->TypeLink->TypeInfos['id'] || $typeids[$i]['id'] == $refObj->TypeLink->TypeInfos['topid'] ){ $pv->Fields['currentstyle'] = $currentstyle ? $currentstyle : 'nLi on'; } else{ $pv->Fields['currentstyle'] = 'nLi'; } //讓channelarclist支持currentstyle屬性end
網(wǎng)上找到的一般沒有加$typeids[$i]['id'] ==$refObj->TypeLink->TypeInfos['topid']
添加這個(gè)后才能對(duì)二級(jí)欄目也起作用。
{dede:channelartlist typeid='2' currentstyle='current'} <li class='{dede:field.currentstyle/}'> <a href='{dede:field name='typeurl'/}'>{dede:field name='typename'/}</a> </li> {/dede:channelartlist}
如果是當(dāng)前欄目則 li的class屬性顯示current,否則顯示class='' ,也可以修改currentstyle='這里改為你需要的類名'。
<div class="nav"> <li {dede:field name=typeid runphp="yes"}(@me=="")? @me=" class='navOn'":@me="";
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: DedeCMS讓channelartlist支持currentstyle屬性