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.
哪个更快?(对于静态 html 页面包括)
静态 html 页面包含的最快解决方案可能是服务器端包含:
foo.asp
<%@LANGUAGE="VBSCRIPT"%> <% Option Explicit %> <!-- #include file="baz.htm" -->
baz.htm
<html> <head /> <body> <h1>Hello World!</h1> </body> </html>