ajaxmanager2_column1.html

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

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

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

<body>
    <p class="main">
                  Let&#39;s Dig in to this script.
               </p>
               <p class="main">
                  <strong>Line 1:</strong> This creates a new function which we
                  call ajaxManager.
               </p>
               <p class="main">
                  <strong>Line 2:</strong> we create a variable called args
                  that points to all the arguments that the function will
                  contain. We do this to cut down on file size rather that
                  typing out ajaxManager.arguments on each occasion we want to
                  make an argument. In case you do not know what a JavaScript
                  argument is used for consider the following:
               </p>
               <p class="code">
                  function alertMe(message){<br />
                  alert(message);<br />
                  }<br />
               </p>
               <p class="main">
                  In the alertMe function the argument employed is
                  &quot;message&quot; and is contained within the
               </p>


</body>
</html>

⌨️ 快捷键说明

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