色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

ajax獲取數據庫的數據

夏志豪2年前31瀏覽0評論

ajax獲取數據庫的數據?

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秒就查詢一次數據