z-blog評論留言的引用按鈕寫法詳解

字號:


    點評:關(guān)鍵字描述:詳解 按鈕 引用 評論 留言 < > class .innerhtml z-blog默認主題的模板b_article_comment.html中 <ul class=msg> <li class=msgname><span class=comment-quote-icon><關(guān)鍵字描述:詳解 按鈕 引用 評論 留言 < > class .innerhtml
    z-blog默認主題的模板b_article_comment.html中
    <ul class=msg>
    <li class=msgname><span class=comment-quote-icon><a onclick=insertquote(this.parentnode.parentnode.parentnode.getelementsbytagname('a')[2].innerhtml,this.parentnode.parentnode.parentnode.getelementsbytagname('li')[2].innerhtml);return false; href=><img src=<#zc_blog_host#>image/common/quote.gif height=9 width=9 alt=quote title=quote /></a></span>&nbsp;<a name=cmt<#article/comment/id#>><#article/comment/count#></a>.<a><#article/comment/name#></a></li>
    <li class=msgurl><a href=<#article/comment/urlencoder#> rel=nofollow target=_blank><#article/comment/url#></a></li>
    <li class=msgarticle><#article/comment/content#></li>
    <li class=msgtime><#article/comment/posttime#>&nbsp;<a href=#comment onclick=revertcomment('<#article/comment/id#>')><#zc_msg265#></a></li>
    </ul>要把其格式改成如下結(jié)構(gòu),z-blog引用評論的按鈕要如何寫呢?: 
    <div class=msg>
    <cite>評論者</cite>
    <blockquote>評論內(nèi)容</blockquote>
    <p>網(wǎng)站</p>
    <p>時間</p>
    </div>講解z-blog引用所用的js函數(shù): 
    引用的函數(shù): insertquote(參數(shù)1[評論者],參數(shù)2[評論內(nèi)容]) 
    this.parentnode 表示該節(jié)點的上一節(jié)點 
    getelementsbytagname('a')[2].innerhtml 表示獲取第二個<a>元素的內(nèi)容,即<#article/comment/name#> 
    同上,getelementsbytagname('li')[2].innerhtml 為<#article/comment/content#> 
    修改后的代碼
    <div class=msg>
    <a onclick=insertquote(this.parentnode.getelementsbytagname('cite')[0].innerhtml,this.parentnode.getelementsbytagname('blockquote')[0].innerhtml);return false; href=#comment>引用</a>
    <cite>評論者</cite>
    <blockquote>評論內(nèi)容</blockquote>
    <p>網(wǎng)站</p>
    <p>時間</p>
    </div>