z-blog评论留言的引用按钮写法详解
描述:解释按钮报价评论消息。quot&Class="superseo">ss.innerhtmlz-blog默认使用主题样式为b_article_comment.html的模板<李class="msgname"><spanclass="comment-quote-icon">&它
关键字叙述:详解按钮引用评论留言<">class.innerHTML
在模板b_article_comment.html中,默认设置z-blog的主题样式。
<ulclass="msg">
<liclass="msgname"><spanclass="comment-quote-icon"><aonclick="InsertQuote(this.parentNode.parentNode.parentNode.getElementsByTagName('a')[2].innerHTML,this.parentNode.parentNode.parentNode.getElementsByTagName('li')[2].innerHTML);returnfalse;"href=""><imgsrc="<#ZC_BLOG_HOST#>image/common/quote.gif"height="9"width="9"alt="quote"title="quote"/></a></span> <aname="cmt<#article/comment/id#>"><#article/comment/count#></a>.<a><#article/comment/name#></a></li>
<liclass="msgurl"><ahref="<#article/comment/urlencoder#>"rel="nofollow"target="_blank"><#article/comment/url#></a></li>
<liclass="msgarticle"><#article/comment/content#></li>
<liclass="msgtime"><#article/comment/posttime#> <ahref="#comment"onclick="RevertComment('<#article/comment/id#>')"><#ZC_MSG265#></a></li>
</ul>
要把它的文件格式改成下面的结构,怎么写z-blog引用评论的按钮?:
<divclass="msg">
<cite>评论者</cite>
<blockquote>评论內容</blockquote>
<p>网址</p>
<p>時间</p>
</div>
解读z-blog引用常用JS数:
引用数:InsertQuote(主参数1[评论者],主参数2[评论内容])
[
this.parentNode表示该连接点的前一个连接点
getElementsbytagname('a')[2]。innerHTML指示第二个
如上,getElementsbytagname('li')[2]。innerHTML是<#article/comment/content#>;
已更改代码
<divclass="msg">
<aonclick="InsertQuote(this.parentNode.getElementsByTagName('CITE')[0].innerHTML,this.parentNode.getElementsByTagName('BLOCKQUOTE')[0].innerHTML);returnfalse;"href="#comment">引用</a>
<cite>评论者</cite>
<blockquote>评论內容</blockquote>
<p>网址</p>
<p>時间</p>
</div>
评论列表(0条)