我有一个 PHP 脚本,它需要大约 1 分 20 秒才能加载,因为它从其他网站获取数据。但是我需要一些方法来向用户显示页面正在加载。带有 .gif 加载图像的类似“此页面正在加载,可能需要 2 分钟”之类的内容。
我试过jquery:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script>
// Put an animated GIF image insight of content
$("#content").empty().html('<img src="http://www.website.com/images/loading.gif" />');
// Make AJAX call
$("#content").load("http://website.com/page.php")
</script>
<div id="content">
Content to load here!
</div>
</body>
</html>
但是页面是空白的(不知道我是否执行错误)。
还有其他方法吗?
我查看了其他问题,但找不到任何符合我需要的东西,我可以开始工作。
谢谢,
杰克。