阿贾克斯没有显示倒计时的价值

时间:2015-10-04 18:37:51

标签: javascript php jquery ajax

我有一个带有ajax的探针,如果我只使用PHP的以下代码,我会正确显示日期。

<h2><span class="clock" data-countdown="{{ $subasta->data_final}}"></span></h2>

但是,当我尝试将此与ajax一起使用时,我不会显示有关日期的信息,但其他信息会正确加载。

<h2><span class='clock' data-countdown='"+response[index].data_final+"'></span></h2>

问题出在哪?

所有ajax代码

success:  function (response) {
                    $(response).each(function(index,value)  {
                        $(".product-image-wrapper2").append("<div class='col-sm-4' style='height:500px;'><div class='nombre'>"+ response[index].nombre + "</div><h2><span class='clock' data-countdown='"+response[index].data_final+"'></span></h2><p>"+response[index].descripcion+"<p>"+ response[index].cant_actual +"<p><a class='pujar btn btn-warning'>Pujar</a>");                                                          
                        $(".product-image-wrapper2").append("</div>");
                    });


                },

0 个答案:

没有答案