為了適應(yīng)不同欄目不同需求的評(píng)論,帝國CMS引入了多評(píng)論列表模板后,還引入了評(píng)論自定義字段,支持不同欄目不同評(píng)論樣式與選項(xiàng)。
自定義評(píng)論字段基本步驟:
1、增加評(píng)論表單所需字段。
2、修改評(píng)論模板加上字段表單元素及字段顯示變量。
3、完成。
·舉例說明:制作“簡單的餐館評(píng)分”
1、增加評(píng)論表單所需字段:
經(jīng)過分析我們需要的字段如下:(字段標(biāo)識(shí):字段名)
口味評(píng)分:kwpf 服務(wù)評(píng)分:fwpf 環(huán)境評(píng)分:hjpf 性價(jià)評(píng)分:xjpf |
<table width="100%" border="0" cellspacing="1" cellpadding="3"> <tr> <td width="11%" height="23"> <div align="center"><strong>口味:</strong> <input type="radio" name="kwpf" value="1">一星 <input type="radio" name="kwpf" value="2">二星 <input type="radio" name="kwpf" value="3" checked>三星 <input type="radio" name="kwpf" value="4">四星 <input type="radio" name="kwpf" value="5">五星 </div></td> </tr> <tr> <td height="23"> <div align="center"><strong>服務(wù):</strong> <input type="radio" name="fwpf" value="1">一星 <input type="radio" name="fwpf" value="2">二星 <input type="radio" name="fwpf" value="3" checked>三星 <input type="radio" name="fwpf" value="4">四星 <input type="radio" name="fwpf" value="5">五星 </div></td> </tr> <tr> <td height="23"> <div align="center"><strong>環(huán)境:</strong> <input type="radio" name="hjpf" value="1">一星 <input type="radio" name="hjpf" value="2">二星 <input type="radio" name="hjpf" value="3" checked>三星 <input type="radio" name="hjpf" value="4">四星 <input type="radio" name="hjpf" value="5">五星 </div></td> </tr> <tr> <td height="23"> <div align="center"><strong>性價(jià):</strong> <input type="radio" name="xjpf" value="1">一星 <input type="radio" name="xjpf" value="2">二星 <input type="radio" name="xjpf" value="3" checked>三星 <input type="radio" name="xjpf" value="4">四星 <input type="radio" name="xjpf" value="5">五星 </div></td> </tr> </table> |
<table width="100%" border="0" cellspacing="1" cellpadding="3"> <tr> <td width="50%" height="23"><strong>口味:</strong><img src="[!--news.url--]e/data/images/[!--kwpf--]star.gif" border="0" align="absmiddle"></td> <td height="23"><strong>服務(wù):<img src="[!--news.url--]e/data/images/[!--fwpf--]star.gif" border="0" align="absmiddle"></strong></td> </tr> <tr> <td height="23"><strong>環(huán)境:<img src="[!--news.url--]e/data/images/[!--hjpf--]star.gif" border="0" align="absmiddle"></strong></td> <td height="23"><strong>性價(jià):<img src="[!--news.url--]e/data/images/[!--xjpf--]star.gif" border="0" align="absmiddle"></strong></td> </tr> </table> |
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國CMS 6.0功能解密之評(píng)論自定義字段