我有我的 index.php 来加载另一个页面(playing.php)并刷新该加载页面的内容。它完成了一段时间的工作,然后页面变为空白,然后返回页面内容。不确定代码发生了什么链接:移动网站 请右键单击源代码
(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;" />
`