📄 p52prototypes.htm
字号:
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function display_it()
{
document.write(this.name);
}
function Employee(name, age)
{
this.name = name;
this.age = age;
this.status = 'Full time';
}
Employee.prototype.address = 'JS Industries, Station St.';
Employee.prototype.contact = '012 345 6789';
Employee.prototype.job = "Appear indispensable";
Employee.prototype.display = display_it;
var person1 = new Employee("Doe, John", 47);
var person2 = new Employee("Doe, Jane", 45);
person1.display() + document.write(" " + person2.contact);
</SCRIPT>
</HEAD>
<BODY>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -