多个加载GIF并加载多个PHP页面

时间:2017-02-26 11:35:05

标签: javascript php jquery ajax

这可以显示单个加载GIF ,而php页面从mySQL数据库中提取数据。如何加载更多页面并分配单独的加载GIF?

<script>
        $(document).ready(function () {
            $(document).ajaxStart(function () {
                $("#wait").css("display", "block");
            });
            $(document).ajaxComplete(function () {
                $("#wait").css("display", "none");
            });
            $("#Content").load("sent.php"); //How do I load multiple pages like these and have dedicated 'Loading GIFs'?
        });
    </script>

1 个答案:

答案 0 :(得分:0)

您可以在内容中创建多个div,并在这些div中加载php页面。