我正在尝试构建将通过AJAX加载交易的交易聚合器,但我的问题是使用MySQL的日期做多个倒计时器(每笔交易一个)。我试图做下面的代码,但这不起作用。有人可以给我最好的解决方案吗?
jQuery代码:
$(document).ready(function(){
$.ajax({
url:"getdata.php",
type:"GET",
dataType:'json',
success:function(rows){
for (var i in rows){
var row=rows[i];
var id=row[0];
var end_date=row[1];
$("#countdown_"+id).countdown({
date: end_date,
format: "on"
},
function() {
// callback function
});
}
}
});
});
PHP代码:
$data=array();
while($row=mysql_fetch_row($result))
{
$data[]=$row;
}
die (json_encode($data));