z-blog根据不同留言数显示不同文字

时间:2021-05-02

如还没人留言就显示“Add comments”,只有一条留言显示“1 comment” ,多条留言显示“n comments”;然后在CSS中定义.post-comment就可以了(当然你也可以改成其它)。可用于b_article-multi.html 摘要文章模板,b_article-istop.html 置顶文章模板,b_article-single.html 日志页文章模板这几个模板文件中。

1. 英文显示版

  • <spanclass="post-comment">
  • <aid="p_comments<#article/id#>"href="<#article/url#>#comments"><#article/commnums#>comments</a>
  • <scripttype="text/javascript">if(<#article/commnums#>==0)
  • {document.getElementById("p_comments<#article/id#>").innerHTML="Addcomments"};
  • if(<#article/commnums#>==1)
  • {document.getElementById("p_comments<#article/id#>").innerHTML="1comment"}</script>
  • </span>
  • 2. 中文显示版

  • <spanclass="post-comment">
  • <aid="p_comments<#article/id#>"href="<#article/url#>#comments"><#article/commnums#>条评论了</a>
  • <scripttype="text/javascript">if(<#article/commnums#>==0)
  • {document.getElementById("p_comments<#article/id#>").innerHTML="发表评论"}</script>
  • </span>
  • 声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

    相关文章