function People (name){
this.name = name;
this.sayName = function(){
console.log('my name is:' + this.name);
}
}
People.prototype.walk = function(){
console.log(this.name + ' is walking');
}
var p1 = new People('饑人谷');
var p2 = new People('前端');
Paste_Image.png
5展东、創(chuàng)建一個 Car 對象,擁有屬性name炒俱、color琅锻、status;擁有方法run向胡,stop恼蓬,getStatus
function Car(name,color,status){
this.name = name
this.color = color
this.status = status
}
Car.prototype = {
run: function(){
console.log('1')
},
stop: function(){
console.log('2')
},
getStatus: function(){
console.log('3')
}
}
var car = new Car('Benz','black',0)
car.run()
car.stop()
car.getStatus()
console.dir(car)
6、創(chuàng)建一個 GoTop 對象僵芹,當(dāng) new 一個 GotTop 對象則會在頁面上創(chuàng)建一個回到頂部的元素处硬,點擊頁面滾動到頂部。擁有以下屬性和方法
1. `ct`屬性拇派,GoTop 對應(yīng)的 DOM 元素的容器
2. `target`屬性荷辕, GoTop 對應(yīng)的 DOM 元素
3. `bindEvent` 方法, 用于綁定事件
4 `createNode` 方法件豌, 用于在容器內(nèi)創(chuàng)建節(jié)點