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