使用構造函數建立對象的公式以下:html
var 對象變量名=new Object();app
建立屬性和方法,同字面量同樣。對象和屬性之間使用(.)運算符,屬性和屬性值之間用(=)相連。ide
window.onload = function (ev) { // 調用對象 person.eat(); } //構造函數建立對象 var person = new Object(); person.name='huangshiren'; person.age=58; person.appetite=3; person.eat=function(){ document.write('正在吃飯'); };
構造函數建立對象並建立屬性和方法函數
使用的形式與構造函數建立對象不同,它的公式以下:this
function 對象名(可選參數1,可選參數2,可選參數3,...){spa
this.屬性=屬性值;htm
...對象
this.方法=function(){it
//函數體io
}
}
用this關鍵字取代對象名。
window.onload = function (ev) { //實例化 var vPerson = new Person("小明", 17, 45, 2); // 調用對象前先建立 var huangshiren=new Person('huangshiren',appetite); huangshiren.eat(); } function Person(name,age,appetite){ this.name=name; this.age=age; this.appetite=appetite; this.eat=function(){ document.write('正在吃飯'); }; }