如何使用jquery和PHP定期显示数组项?

时间:2013-10-18 08:44:36

标签: php jquery ajax

以下是我的index.php文件

<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
var count = 0;

$(document).ready(function(){
var auto_refresh = setInterval(function (){
    $('#mydiv').load('a.php', {count: count}, function () {
        count = count + 1;

        //after three attempts it won't call php file.
        if (count > 2) {
            clearInterval(auto_refresh);
        }
    }).fadeIn("slow");
    }, 1000); 
});
</script>
</head>
<body>
<div id="mydiv"> </div>
</body>
</html>

以下是我的a.php文件

<?php
$questions=array(
                 "Array Item 0",
                 "Array Item 1",
                 "Array Item 2");

if (isset($_GET["count"])) 
{
    echo $questions[intval($_GET["count"])];
}
else
{
    echo rand();
}
?>

以上代码的问题是,php文件中的其他部分正在运行evertime。这意味着我逐个获得3个随机数,但我希望逐个获得所有三个数组记录。我认为isset($_GET["count"])不起作用。但为什么,我不知道。请帮助。

1 个答案:

答案 0 :(得分:2)

这个a.php对我有用:

<?php
$questions=array(
             "Array Item 0",
             "Array Item 1",
             "Array Item 2");

if (isset($_POST["count"])) 
{
    echo $questions[intval($_POST["count"])];
}
else
{
    echo rand();
}
?>

您的数据是“已发布”?

增加:

我在jQuery页面找到了这个:

请求方法

如果数据作为对象提供,则使用POST方法;否则,假设GET。