码迷,mamicode.com
首页 > Web开发 > 详细

ajax定时获取数据

时间:2016-08-18 19:36:04      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:

function showLogs()
{
$("#table2").empty(); //这是清空原来的数据
$.ajax({

type:"post",
url:"<%=request.getContextPath()%>/logs/queryLogsInfo.action",
dataType:"json",
success:function(data)
{
for ( var i = 0; i < data.length; i++) 
{
$("#table2").append("<tr style=‘line-height:25px;‘>"
+"<td width=‘5%‘>"+data[i].id+"</td>"
+"<td width=‘5%‘>"+data[i].receive+"</td>"
+"<td width=‘8%‘>"+data[i].data+"</td>"
+"<td width=‘10%‘>"+data[i].dataLength+"</td>"
+"</tr>");
}
}
})
}
var t = setInterval("showLogs()", 1000); //隔1秒就查询一次数据

ajax定时获取数据

标签:

原文地址:http://www.cnblogs.com/Yasin08/p/5784976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!