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
"message" 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">
<body onload="alertMe('my name is
Eddie')">
</p>
<p class="main">
What this does is then pass 'my name is eddie' 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 + -
显示快捷键?