importjs1_column1.html

来自「Ajax tutorial archive」· HTML 代码 · 共 36 行

HTML
36
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
	<title>Introduction to Ajax Tutorial</title>
</head>

<body>
                  <p class="main">
                  Your heaviest load times are going to be either the
                  JavaScript itself or CSS files in the head section. This is
                  due to the fact that when JavaScript or CSS is being parsed
                  by a browser it typically just uses one connection to do so
                  where as other elements in the body section load through
                  multiple connections. In short all attention is focused on
                  parsing the JavaScript and the other elements have to wait
                  until the JavaScript is parsed to render.
               </p>
               <p class="main">
                  That is why doing this sort of thing in Web pages is
                  notoriously poor:
               </p>
               <p class="code">
                  &lt;script src=&quot;blah1.js&quot;
                  type=&quot;text/javascript&quot;&gt;<br />
                  &lt;/script&gt;<br />
                  &lt;script src=&quot;blah2.js&quot;
                  type=&quot;text/javascript&quot;&gt;<br />
                  &lt;/script&gt;<br />
                  &lt;script src=&quot;blah3.js&quot;
                  type=&quot;text/javascript&quot;&gt;<br />
                  &lt;/script&gt;
               </p>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?