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

📄 ajaxmanager2_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">
                  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -