刷新容器而不刷新页面

时间:2014-12-11 06:54:00

标签: php jquery ajax

通过使用这个<?php echo date('r'); ?>,有没有什么方法可以刷新简单容器(我的时间为echo的时间)而不刷新页面Here this is my page i am displaying date and time here

2 个答案:

答案 0 :(得分:1)

定期向一个回复日期的PHP文件发送AJAX请求。

(function worker() {
  $.ajax({
    url: 'backend.php', 
    success: function(data) {
      $('.result').html(data);
    },
    complete: function() {
      // Schedule the next request when the current one's complete
      setTimeout(worker, 5000);
    }
  });
})();

在日期的div上调用此worker()函数。

backend.php

<?php
echo date('Y-m-d H:i:s'); // This is just a sample date format. YOUR DATE FORMAT.
?>

答案 1 :(得分:0)

  <iframe src="http://free.timeanddate.com/clock/i4gbn2wi/n1763/tt0/tw0/ts1/tb4" frameborder="0" width="132" height="34"></iframe>

试试这个