标签: jquery html performance
如果我有一个非常长的页面,其中隐藏的长about部分通过单击菜单图标显示,那么在性能方面将其留在index.html内或使用它是否更好作为一个单独的about.html并使用像这样的jQuery导入它?
about
index.html
about.html
<script> $("#about") .html('<object data="http://www.example/about.html"/>'); </script>
我忘了说我有一个单页网站 谢谢。 F。