0

我有两个文件。一个 PHP 文件,其中包含一条 SQL-Select 语句并以 html 格式返回输出。第二个文件是我的索引文件,其中包含一个带有“loadMembers”类的 div 和一些 jquery 代码:

$(document).ready(function () {
    function startInterval() {
        var refreshId = setInterval(function () {
            $.ajax({
                url: 'sidebars/members.php',
                type: 'html',
                success: function (resp) {
                    $("div.loadMembers").html(resp);
                }
            });
        }, 5000);
    }
    startInterval();
});

我想以 5 秒的间隔用数据库数据刷新 div。我也用 .load() 试过了...

该请求包含一些数据,但我的数据库中没有任何数据......

问题出在哪里?

谢谢你的帮助 :)

4

1 回答 1

0

您的请求类型可以是 get 或 post,不是html,应该是dataType

url : 'sidebars/members.php',
type: 'POST', // or GET
dataType : 'html',
于 2013-06-26T21:45:52.110 回答