博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery ajax大数据量each输出 list
阅读量:6603 次
发布时间:2019-06-24

本文共 865 字,大约阅读时间需要 2 分钟。

<script>

var tbodystr = "";
$.ajax({
                type: "get",
                url: "gettable.ashx",
                cache: false,
                datatype: "json",
                success: function(msg) {
                    $.each(msg, function(i) {
                        tbodystr = "<tr>";
                        tbodystr += "<td>" + msg[i]._0 + "</td>";
                        tbodystr += "<td>" + msg[i]._1 + "</td>";
                        tbodystr += "<td>" + msg[i]._2 + "</td>";
                        tbodystr += "</tr>";
                        $("#tbmain tbody").append(tbodystr);
                    });
                }
            });

</script>

gettable.ashx文件

httpcontext.current.response.write(json.getjsondata(ds, keyfileds.tostring()));

大类的数据,就优化下看看

success: function(msg) {
   var tbodystr = [];
   $.each(msg, function(i) {
      tbodystr.push("<tr>");
      tbodystr.push("<td>" + msg[i]._0 + "</td>");
      tbodystr.push("<td>" + msg[i]._1 + "</td>");
      tbodystr.push("<td>" + msg[i]._2 + "</td>");
      tbodystr.push("</tr>");      
   });
   $("#tbmain tbody").append(tbodystr.join(""));//join 将数组已某种形式连接起来
}

转载于:https://www.cnblogs.com/chuanqimessi/p/4961750.html

你可能感兴趣的文章
CS 229 notes Supervised Learning
查看>>
jQuery,ajax,for循环使用典型案例
查看>>
2018.10.27-dtoj-3996-Lesson5!(johnny)
查看>>
genimage.cfg.template hacking
查看>>
DataTable转换成json字符串
查看>>
RecyclerView重用导致的元素重复问题
查看>>
iOS网络协议----HTTP/TCP/IP浅析
查看>>
ubuntu 12.04 安装 redis
查看>>
基于多线程实现套接字服务端支持并发
查看>>
IOS_CGRect
查看>>
Sql Server中不常用的表运算符之APPLY(1)
查看>>
【DM642】ICELL Interface—Cells as Algorithm Containers
查看>>
linux所有命令失效的解决办法
查看>>
力扣算法题—085最大矩阵
查看>>
svs 在创建的时候 上传文件夹 bin obj 这些不要提交
查看>>
mysql-用命令导出、导入表结构或数据
查看>>
Tinkphp
查看>>
EntityFrameworkCore 一对一 && 一对多 && 多对多配置
查看>>
How to temporally disable IDE tools (load manually)
查看>>
Vue.js学习 Item4 -- 数据双向绑定
查看>>