刷新div标签

时间:2012-06-09 07:41:38

标签: html refresh

我有我的index.php加载另一个页面(playing.php)并刷新该加载页面的内容。它完成了一段时间的工作,然后页面变为空白,然后返回页面内容。不确定代码发生了什么链接:mobile website 请右键单击源代码

(function($){
$(document).ready(function()
{
    $.ajaxSetup(
    {
        cache: false,
        beforeSend: function() {
            $('#content').hide();
            $('#loading').show();
        },
        complete: function() {
            $('#loading').hide();
            $('#content').show();
        },
        success: function() {
            $('#loading').hide();
            $('#content').show();
        }
    });
    var $container = $("#content");
    $container.load("playing.php");
    var refreshId = setInterval(function()
    {
        $container.load('playing.php');
    }, 40000);
});})(jQuery);

`

并调用内容

<div id="wrapper">
<div id="content"></div>
<img src="images/loading.gif" id="loading" alt="loading" style="display:none;" />

    
`

0 个答案:

没有答案