码迷,mamicode.com
首页 > 其他好文 > 详细

对象原型

时间:2016-09-23 21:22:40      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

如何判断一个对象的方法是来自这个本身的还是原型的?

function Person() {
}
 
Person.prototype.name="Nicholas";
Person.prototype.age=29;
Person.prototype.sayName=function(){
    alert(this.name);
}
 
var person1=new Person();
person1.name="Greg";
 
var person2=new Person();
 
console.log(person1.hasOwnProperty("name"));//true
console.log(person2.hasOwnProperty("name"));//false
 
console.log("name" in person1);//true
console.log("name" in person2);//true
 
for (var prop in person1) {
    console.log(prop);//name   age   sayName
}
 
function hasPrototypeProperty(object,pro) {//如此可判断存在于原型中的属性
    return (!object.hasOwnProperty(pro))&&(pro in object);
}
console.log(hasPrototypeProperty(person1,"name"));//false
console.log(hasPrototypeProperty(person2,"name"));//true

 

function Person() {
}
 
Person.prototype.name="Nicholas";
Person.prototype.age=29;
Person.prototype.sayName=function(){
    alert(this.name);
}
 
var person1=new Person();
person1.name="Greg";
 
var person2=new Person();
 
console.log(person1.hasOwnProperty("name"));//true
console.log(person2.hasOwnProperty("name"));//false
 
console.log("name" in person1);//true
console.log("name" in person2);//true
 
for (var prop in person1) {
    console.log(prop);//name   age   sayName
}
 
function hasPrototypeProperty(object,pro) {//如此可判断存在于原型中的属性
    return (!object.hasOwnProperty(pro))&&(pro in object);
}
console.log(hasPrototypeProperty(person1,"name"));//false
console.log(hasPrototypeProperty(person2,"name"));//true

 

对象原型

标签:

原文地址:http://www.cnblogs.com/yuaima/p/5901557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!