1

別のページ(playing.php)をロードし、ロードされたページのコンテンツを更新するためのindex.phpがあります。しばらくの間その仕事をしてから、ページが空白になり、ページのコンテンツが返されます。コードで何が起こっているのかわかりません。リンクは次のとおりです。モバイル Web サイト ソース コードを表示するには、右クリックしてください。

(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;" />


`

4

0 に答える 0