intro4_column1.html

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

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

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

<body>
                        <p class="main">
                  Ajax itself is a technique, but to use the technique
                  effectively one must become familiar with the philosophy
                  behind the technique. In other words, it is not just the use
                  of the technique that is important, but rather developing a
                  different mindset and approach to Web development that is
                  central.
               </p>
               <p class="main">
                  To date, I have mentioned the term ajax a number of times but
                  have not described the central object that makes Ajax, Ajax.
                  At the heart of Ajax are the xmlhttprequest object and its
                  Microsoft&#39;s activeX equivalent. It is this object that
                  allows data to be transferred asynchronously. In case you are
                  not clear what asynchronous means, it is the ability to
                  handle processes independently from other processes.
                  Synchronous which is the opposite of asynchronous, then means
                  that processes are dependent upon other processes. To
                  illustrate let us use a classical Web page scenario.
               </p>


</body>
</html>

⌨️ 快捷键说明

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