ajaxmanager2_column2.html

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

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

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

<body>
            <p class="main">
                  In the alertMe function the argument employed is
                  &quot;message&quot; and is contained within the parentheses.
                  The argument itself is passed to a stock standard alert()
                  method.
               </p>
               <p class="main">
                  To generate an argument to represent the message we can do
                  this on the body onload event.
               </p>
               <p class="code">
                  &lt;body onload=&quot;alertMe(&#39;my name is
                  Eddie&#39;)&quot;&gt;
               </p>
               <p class="main">
                  What this does is then pass &#39;my name is eddie&#39; to the
                  argument message and when the alert is triggered then my name
                  is eddie is displayed in the alert dialogue. An argument is a
                  system where you can pass information from an event to the
                  function itself, which is particularly useful when working
                  with programming languages.
               </p>


</body>
</html>

⌨️ 快捷键说明

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