innerHTML size limit

后端 未结 6 1747
执念已碎
执念已碎 2020-12-04 03:38

I want to use AJAX to load an htmlfile into a

I will then need to run jsMath on this. Everything I have done so far with innerHTML has been a para
6条回答
  •  离开以前
    2020-12-04 04:22

    You'll probably want to profile this with a tool like dynatrace ajax or speed tracer to understand how setting innerHTML to a really huge value affects performance. You might want to compare it with another approach like putting the new content in an iframe, or paginating the content.

提交回复
热议问题