json数据传到前台并解析展示成列表的方法
程序员文章站
2022-04-24 13:21:09
因为某些原因,项目中突然需要做自己做个ajax异步获取数据后动态向表格中添加数据的页面,网上找了半天都没有 看到现成的,决定自己写个例子
1、html页面
&l...
因为某些原因,项目中突然需要做自己做个ajax异步获取数据后动态向表格中添加数据的页面,网上找了半天都没有 看到现成的,决定自己写个例子
1、html页面
<!doctype html> <html> <head> <meta charset="utf-8"> <title>文件柜取件列表</title> <script type="text/javascript" src="/js/jquery-1.11.3.min.js"></script> <script type="text/javascript" src="/js/ai/ai-lib.js"></script> </head> <body> <div class="main pusher"> <form class="form_style"> <div class="fields"> <div class="div_1"> <label for="lbl">取件标题</label> <input name="filetitle" type="text" id="filetitle"> </div> <div class="div_l"> <label>取件发文单位</label> <input name="comedept" id="comedept" placeholder="" type="text"> </div> <div class="div_l"> <label>投箱时间</label> <input type="text" maxlength="50" name="sendtime" id="sendtime" placeholder=""> </div> <div class="div_l"> <label>打印人单位</label> <input type="text" maxlength="50" name="printdept" id="printdept"> </div> <div> <label>打印人姓名</label> <input type="text" maxlength="50" name="printuser" id="printuser"> <input type="button" value="查询" id="btsearch" class="btn_search"/> </div> </div> </form> <div class="table-container"> <table class="ui nine column table celled table-result" id="table-result"> <thead> <tr> <th>hotelseq</th> <th>文件标题</th> <th>条码编号</th> <th>发文单位</th> <th>紧急程度</th> <th>份数</th> <th>密级</th> <th>投箱时间</th> <th>备注</th> </tr> </thead> <tbody id="tbody-result"> </tbody> </table> </div> </div> </body> </html>
2、filebox-print.jsp
$(function () { $('#btsearch').click(function () { var filetitle= $('#filetitle').val(); var comedept= $('#comedept').val(); var sendtime= $('#sendtime').val(); var printdept = $('#printdept').val();
var printuser=$('#printuser').val(); var tbody=window.document.getelementbyid("tbody-result"); $.ajax({ type: "post", datatype: "json", url: "<%=path%>/filebox/filebox!gettodofileboxlist.action", data: { filetitle: filetitle, comedept: comedept, sendtime: sendtime, printdept: printdept,
printuser:printuser }, success: function (msg) { if (msg.ret) { var str = ""; var data = msg.data; for (i in data) { str += "<tr>" + "<td>" + data[i].filetitle+ "</td>" + "<td>" + data[i].filecode+ "</td>" + "<td>" + data[i].comedept + "</td>" + "<td>" + data[i].fileemerg+ "</td>" + "<td>" + data[i].alreadycount+ "</td>" + "<td>" + data[i].filesecret+ "</td>" + "<td>" + data[i].sendtime + "</td>" + "<td>" + data[i].remark+ "</td>" + "<td>" + data[i].fileboxid+ "</td>" +
"</tr>"; } tbody.innerhtml = str; } }, error: function () { alert("查询失败") } }); }); });
做完之后感觉瞬间就踏实了不少,这个礼拜可以好好休息了。俺接触这个又学到了一点前台的知识了。
以上这篇json数据传到前台并解析展示成列表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。