Checkbox状态使用setinterval和mysql数据库进行Ajax刷新

时间:2014-01-21 18:09:41

标签: php mysql ajax checkbox

我有一个复选框,每次点击它时,状态都会记录到MySQL数据库中。 怎么可能每隔5秒刷新一次复选框的状态(使用Ajax-setInterval),从数据库中获取状态值?

目前,代码如下所示:

<div class="onoffswitch">
<input type="hidden" id="hidden1" value="6">
<input type="checkbox" name="onoffswitch1" class="onoffswitch-checkbox" id="myonoffswitch1"
<?php
$query3=mysql_query("select * from choice where id=6");
$query4=mysql_fetch_array($query3);
if($query4['choice']=="1")
{
echo "checked";
}
?>>
<label class="onoffswitch-label" for="myonoffswitch1">
<div class="onoffswitch-inner"></div>
<div class="onoffswitch-switch"></div>
</label>
</div>

1 个答案:

答案 0 :(得分:0)

您可以在间隔中设置ajax进程。在使用该代码之前,请确保已将jQuery库包含在页面中。所以:

<script type="text/javascript">
    setInterval(function(){
        $.ajax({
            type: 'POST', /* Possible GET */
            data: {...},
            url: 'file.php' /* Relative path to file */
            success: function(response){
                 /* do what you wabt with response object **/
            }
        });
    },5000);
</scritp>

将数据库进程代码放入“file.php”,并仅将特定数据从文件返回到ajax。