📄 ajaxmanager2_column1.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Introduction to Ajax Tutorial</title>
</head>
<body>
<p class="main">
Let'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
"message" and is contained within the
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -