gpt4 book ai didi

jquery - Jquery 代码应该放在页眉还是页脚?

转载 作者:IT王子 更新时间:2023-10-29 03:24:02 25 4
gpt4 key购买 nike

放置 Jquery 代码(或单独的 Jquery 文件)的最佳位置在哪里?如果我将它放在页脚中,页面加载速度会更快吗?

最佳答案

Put Scripts at the Bottom

The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won't start any other downloads, even on different hostnames. In some situations it's not easy to move scripts to the bottom. If, for example, the script uses document.write to insert part of the page's content, it can't be moved lower in the page. There might also be scoping issues. In many cases, there are ways to workaround these situations.

An alternative suggestion that often comes up is to use deferred scripts. The DEFER attribute indicates that the script does not contain document.write, and is a clue to browsers that they can continue rendering. Unfortunately, Firefox doesn't support the DEFER attribute. In Internet Explorer, the script may be deferred, but not as much as desired. If a script can be deferred, it can also be moved to the bottom of the page. That will make your web pages load faster.

编辑: Firefox 从 3.6 版开始支持 DEFER 属性。

来源:

关于jquery - Jquery 代码应该放在页眉还是页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2105327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com