js中的hasOwnProperty和isPrototypeOf方法
阿新 • • 發佈:2019-02-20
hasOwnProperty:是用來判斷一個物件是否有你給出名稱的屬性或物件。不過需要注意的是,此方法無法檢查該物件的原型鏈中是否具有該屬性,該屬性必須是物件本身的一個成員。
isPrototypeOf是用來判斷要檢查其原型鏈的物件是否存在於指定物件例項中,是則返回true,否則返回false。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
function siteAdmin(nickName,siteName){
this .nickName=nickName; this .siteName=siteName;
}
siteAdmin.prototype.showAdmin
= function ()
{
alert( this .nickName+ "是" + this .siteName+ "的站長!" )
};
siteAdmin.prototype.showSite
= function (siteUrl)
{
this .siteUrl=siteUrl;
return this .siteName+ "的地址是" + this .siteUrl;
};
var matou= new siteAdmin( "愚人碼頭" , "WEB前端開發" );
var matou2= new siteAdmin( "愚人碼頭" , "WEB前端開發" );
matou.age= "30" ;
//
matou.showAdmin();
alert(matou.hasOwnProperty( "nickName" )); //true
alert(matou.hasOwnProperty( "age" )); //true
alert(matou.hasOwnProperty( "showAdmin" )); //false
alert(matou.hasOwnProperty( "siteUrl" )); //false
alert(siteAdmin.prototype.hasOwnProperty( "showAdmin" )); //true
alert(siteAdmin.prototype.hasOwnProperty( "siteUrl" )); //false
alert(siteAdmin.prototype.isPrototypeOf(matou)) //true
alert(siteAdmin.prototype.isPrototypeOf(matou2)) //true
|