因为某些原因,项目中突然需要做自己做个ajax异步获取数据后动态向表格中添加数据的页面,网上找了半天都没有 看到现成的,决定自己写个例子
1、HTML页面
<Meta charset="utf-8">
文件柜取件列表
标题
hotelSeq
文件标题
条码编号
发文单位
紧急程度
份数
密级
投箱时间
备注
<div class="div_l">
<div class="div_l">
打印人单位
<input type="text" maxlength="50" name="printUser" id="printUser">
<input type="button" value="<a href="https://www.jb51.cc/tag/chaxun/" target="_blank" class="keywords">查询</a>" id="btSearch" class="btn_search"/>
<div class="table-container">
<table class="ui nine column table celled table-result" id="table-result">
2、fileBox-print.jsp
$.ajax({
type: "post",dataType: "json",url: "<%=path%>/fileBox/fileBox!getToDoFileBoxList.action",data: {
FileTitle: FileTitle,comeDept: comeDept,sendTime: sendTime,printDept: printDept,
type: "post",dataType: "json",url: "<%=path%>/fileBox/fileBox!getToDoFileBoxList.action",data: {
FileTitle: FileTitle,comeDept: comeDept,sendTime: sendTime,printDept: printDept,
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].file<a href="https://www.jb51.cc/tag/Box/" target="_blank" class="keywords">Box</a>Id+ "</td>" +
查询失败")
}
});
});
});
做完之后感觉瞬间就踏实了不少,这个礼拜可以好好休息了。俺接触这个又学到了一点前台的知识了。
以上这篇json数据传到前台并解析展示成列表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/31190.html