如何使用javascript每10秒检查一次php文件

时间:2014-11-09 13:34:44

标签: javascript php load

我有一个php文件来检查Items id

例如check.php

<?php

if(mysql_num_rows(mysql_query("SELECT * FROM items WHERE id = ".$_GET['id'])))
{
     echo "This Id: $_GET['id'] is <b>true</b> \n\n";
}
else
{
     echo "This Id: $_GET['id'] is <b>true</b> \n\n";
}

?>

每隔10秒,我想使用JavaScript检查ID。

<script>
var id1 = 1;
var id2 = 2;
var id3 = 5;
var id4 = 9;
var id5 = 10;
var id6 = 23;
</script>

我不知道如何使用JavaScript或AJAX。

我希望我的输出是这样的:

//after 10 seconds 
This Id: 1 is true

//after 20 seconds
This id: 2 is true

//after 30 seconds
This id: 5 is trud

and ....

1 个答案:

答案 0 :(得分:0)

使用setInterval作为间隔,然后使用jQuery $ .load指定附加到文件的一些变量参数来加载...例如$(&#39; body&#39;)。load(&#39; file.php ?ID = 2及时间= 2&#39);