的index.php
NSDictionary
这是javascript用于显示倒数计时器。 我正在使用 jquery.countdown.min.js 插件。
<script type="text/javascript">
$( document ).ready(function() {
$('[data-countdown]').each(function() {
var $this = $(this), finalDate = $(this).data('countdown');
$this.countdown(finalDate, function(event) {
$this.html('Time Left : '+ event.strftime('%D days %H:%M:%S'))}).on('finish.countdown', function() {
$this.html('This campaignn has expired!');
});
});
});
</script>
Closing_Date和cid来自数据库。 当我访问它工作正常。
但是当我通过ajax将数据插入index.php时。它没有做任何事情。似乎没有执行javascript代码。
我检查了firebug并发现日期即将发送到index.php文件,但它没有显示倒数计时器。
请告知
的Ajax
<div class="counter-inner"> <div id="example<?php echo $rec['cid'];?>" data-countdown="<?php echo date("m/d/Y h:i:s", strtotime($rec['Closing_Date']));?>"></div></div><p>
答案 0 :(得分:1)
移动$('[data-countdown]')。each(function()到ajax js,如下所示:
$(document).ready(function() {
$('#more').click(function() {
var get_last_post_display = $('.unique-class:last').attr('id');
$('#more').html('<img src="ajax-loader.gif"');
$.post('more_prj.php', 'last_id_post='+get_last_post_display, function(html) {
if(html) {
$('#main-div').append(html);
$('#more').text('Load More Post'); //add text "Load More Post" to button again
$('[data-countdown]').each(function() {
var $this = $(this), finalDate = $(this).data('countdown');
$this.countdown(finalDate, function(event) {
$this.html('Time Left : '+ event.strftime('%D days %H:%M:%S'))}).on('finish.countdown', function() {
$this.html('This campaignn has expired!');
});
});
} else {
$('#more').text('No more Post to load'); // when last record add text "No more posts to load" to button.
}
}, 'json');
});
});