test.html文件
<html>
<head>
<Meta charset="utf-8">
<title> hello</title>
</head>
<body>
<script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"> </script>
<script>
function check(){
$.ajax({
type:"GET",
url:"./test.PHP",
dataType:"json",
success:function(data){
if(data.success && data.info.length > 0){
$("#info").append(data.info + "<br>");
}
},
error:function(res){
alert(res);
}
});
}
window.setInterval(check, 50); //每秒执行一次
window.scrollTo(0,document.body.scrollHeight);
</script>
<body>
<div style="width:1000px;margin:0 auto;"" >
<table border='1' width="1000px" >
<thead>
</thead>
<tbody id='info'>
</tbody>
</table>
</div>
</body>
</html>
<?PHP
require_once("./comm_define.PHP");
$redis = get_redis();
$rlt = $redis->rPop("imonitor_space");
if($rlt !== false)
{
echo $json = '{"success":true,"info":"'.$rlt.'"}';
}
else
{
echo $json = '{"success":false}';
}
?>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。