⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 intro4_column2.html

📁 Ajax tutorial archive
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

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

<body>
            <p class="main">
                  Assume we have page A and on this page we have a number of
                  elements, including a couple of script and style tags. With
                  synchronous data transfer the script tag needs to be parsed
                  before the next element is parsed. In this way then the next
                  element to be parsed by the browser is dependent upon the
                  script tag being parsed first. Effectively we are creating a
                  bottleneck of one connection between Web page and browser.
                  Style tags and link elements in the head section of the
                  document create the same bottleneck effect. They have to be
                  parsed one at a time before other page elements can download.
               </p>
               <p class="main">
                  Once they have been parsed then the elements in the body
                  section can use concurrent connections to help speed up the
                  download process. For example, most servers handle between 2
                  to 4 concurrent connections between web page and browser.
               </p>


</body>
</html>

⌨️ 快捷键说明

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