标签:
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秒就查询一次数据
标签:
原文地址:http://www.cnblogs.com/Yasin08/p/5784976.html