Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的前端 PHP 同事一次又一次地想知道我。我很快就会向他开枪)))
页面的html代码是单行的
<html><title></title><div></div></html>
一直认为一定是:
<html> <title></title> <body> <div> </div> </body> </html>
包含 100 个产品的页面是单行。很难理解的东西。
浏览器渲染内联 html 代码是否更快?
这显然是错误的优化。永远不会注意到性能差异。这将是毫秒或更短的数量级。
但是,您使代码更难维护。从长远来看,这可能会花费您的钱,因为了解正在发生的事情需要更长的时间。
简而言之,潜在的性能提升永远不会超过维护该代码的额外成本。