创建这个动作文件并加入 Behavior 函数
一旦您对这个函数在不同的浏览器的工作状况感到满意了并且决定了使用什么样的参数的时候,您就可以准备创建这个 Behavior 动作了。每一个
Behavior 动作并需拥有下列函数并且必须进行恰当的声明:
canAcceptBehavior()
behaviorFunction()
applyBehavior()
inspectBehavior()
As a shortcut, you'll work from a skeleton sample file and add to it
to create a new action. The canAcceptBehavior() function in the sample
file is already defined correctly, so you need not make any changes
to it.
用这个例子来建立一个新的动作文件:
1 在浏览器中打开这个文件并选择文件〉另存为。将这个文件命名为 Check Browser Brand.htm 并保存在 Dreamweaver
文件夹下的 Configuration/Behaviors/Actions 文件夹中。
2 在文本编辑器中打开 Check Browser Brand.htm
3 从您早先建立的 textBrowser.htm 中复制 checkBrowserBrand() 函数, 并粘贴到这样的注释下 //Your
behavior function goes here.
4 建立 behaviorFunction() 函数以返回函数的名称 - checkBrowserBrand,如下所示:
function behaviorFunction(){
//Return the name of your function here
return "checkBrowserBrand";
}
5 保存这个文件。
摘自《HTML Point》 Weber/文
|
|