?? p52prototypes.htm
字號(hào):
<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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -