如何从这段代码插入数字到PHP?

时间:2015-06-17 05:59:34

标签: php

我试图仅从中插入数字:

<span class="fb-comments-count" data-href="http://example.com/"></span>comments

进入一些现有的PHP代码:

<span class="meta_facebook_comments">
   <i class="fa fa-comments"></i> 
        <?php 
            echo "Comments";
        ?>
</span>

为了对生活的热爱,我无法弄明白?

即。显示如下内容:

<i class="fa fa-comments"></i> 2 Comments

例如..

寻找一些建议, 感谢

1 个答案:

答案 0 :(得分:1)

您可以使用jquery prepend在&#34;评论&#34;之前添加值。文字:

$(".fa .fa-comments").prepend("2 ");  

结果将是

  

2条评论

编辑:根据OP的评论 - &gt;要将数据从一个元素传输到另一个元素,请使用以下方法:

var number_of_comments = $(".fb-comments-count").text(); //get number of comments  
$(".fa .fa-comments").prepend(number_of_comments); //add comment count to another element  

请参阅此工作demo