在織夢(mèng)圖集內(nèi)容頁調(diào)用圖集的時(shí)候,如果使用某些幻燈片特效或者jquery插件,會(huì)用到ID編號(hào)什么的,本教程將教會(huì)你如何給圖集圖片自動(dòng)編號(hào),也就是說,讓{dede:productimagelist}標(biāo)簽支持自動(dòng)編號(hào)。
打開include/taglib/productimagelist.lib.php文件,找到:
$ctp->LoadSource($innerText);
在它下面加上:
$GLOBALS['autoindex'] = 0;
查找:
$revalue .= $ctp->GetResult();
在它下面加上:
$GLOBALS['autoindex']++;
內(nèi)容頁調(diào)用代碼:
[field:global name=autoindex/]
例:
{dede:productimagelist}
<span id="[field:global name=autoindex/]"><img src="[field:imgsrc/]" width="805" height="523" /></span>
{/dede:productimagelist}
顯示代碼結(jié)果:
<span id="0"><img src="1.jpg" width="605" height="380" /></span>
<span id="1"><img src="2.jpg" width="605" height="380" /></span>
<span id="2"><img src="3.jpg" width="605" height="380" /></span>
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)圖集圖片{dede:productimagelist}標(biāo)簽自動(dòng)編號(hào)