Fastest DOM insertion

后端 未结 5 630
花落未央
花落未央 2020-12-08 22:43

What are the best practices for doing DOM insertion?

  • Is it faster to insert large chunks of html vs element at a time in a loop?
  • Does it matter what h
5条回答
  •  萌比男神i
    2020-12-08 23:20

    innerHTML is actually slower then direct DOM manipulation in many cases. check out this benchmark on jsperf

    There is no "right answer", you will have to find the proper, most efficient method for your specific use case

提交回复
热议问题