dede評論是一個(gè)基于php開發(fā)的評論插件,在dedecms系統(tǒng)上廣泛使用。它可以為網(wǎng)站添加評論功能,方便網(wǎng)站管理員和用戶進(jìn)行信息互動。而dede評論的html代碼如下:
<dl id="comment" class="comment">
<dt class="comment-title">評論列表</dt>
<dd id="list">
評論列表將通過ajax動態(tài)加載
</dd>
<form id="form" name="form" method="post" action="/plus/dedecomment.php">
<fieldset>
<legend>發(fā)布評論</legend>
用戶名:<input type="text" name="username" id="username" value="" /><br />
內(nèi)容:<br />
<textarea name="comment" id="comment" cols="60" rows="6"></textarea><br />
<input id="aid" name="aid" type="hidden" value="1" />
<input id="typeid" name="typeid" type="hidden" value="5" />
<input name="submit" type="submit" value="發(fā) 布" />
</fieldset>
</form>
</dl>
其中,<dl id="comment" class="comment">
標(biāo)簽定義了整個(gè)評論的范圍,用于包含評論列表和發(fā)布評論的表單。其中,<dt class="comment-title">評論列表</dt>
定義了評論列表的標(biāo)題,<dd id="list">評論列表將通過ajax動態(tài)加載</dd>
則用于顯示評論列表。而發(fā)布評論的表單則使用了<form id="form" name="form" method="post" action="/plus/dedecomment.php">
標(biāo)簽,其中,<input type="text" name="username" id="username" value="" />
定義了輸入用戶名的文本框,<textarea name="comment" id="comment" cols="60" rows="6"></textarea>
則定義了輸入評論內(nèi)容的文本框。最后,<input id="aid" name="aid" type="hidden" value="1" />
和<input id="typeid" name="typeid" type="hidden" value="5" />
用于傳遞文章id和欄目id,以便保存評論信息。而<input name="submit" type="submit" value="發(fā) 布" />
則定義了提交按鈕,用于發(fā)表評論。