JavaScript-Jquery异步加载大概100条数据或更多,用append()方法好一点,还是html()方法重置元素的HTML效率高?

发布于 2017-05-06 14:11:19 字数 263 浏览 1266 评论 2

页面元素A,id=divA
后台异步传回list数据
将list的数据渲染到元素A
这里为了方便说明:且设list[i]为每次遍历list得到的页面元素
方式1:
遍历list,$("#divA").append(list[i]);

方式2:
遍历list,htmlStr+=list[i];
遍历完成后,用$("#divA").html(htmlStr);

自己测了下,感觉不太明显

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灵芸 2017-08-01 03:26:17

方式2快,大概是因为DOM操作少,浏览器的重绘与重排少。

我建立个简单的测试,见jsPerf

甜柠檬 2017-05-14 10:03:20

原因应该就是这个:
http://tech.pro/tutorial/1254/9-ways-to-optimize-your-front-end-performance

Use DocumentFragments or innerHTML Instead of Mass Element Injection

DOM operations are taxing on the browser. Despite performance
improvements in browsers, the DOM is slow and if you aren't aware of it,
you could be playing to that slowness. That's why it's important to minimize mass DOM node creation and immediate injection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文