位置:首頁(yè) > 軟件操作教程 > 編程開發(fā) > JavaScript > 問(wèn)題詳情

JavaScript 檢測(cè)原型

提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-26

■知識(shí)點(diǎn)

使用isPrototypeOf()方法可以判斷該對(duì)象是否為參數(shù)對(duì)象的原型。isPrototypeOf()是一個(gè)原型方法,可以在每個(gè)實(shí)例對(duì)象上調(diào)用。

■實(shí)例設(shè)計(jì)

下面的代碼簡(jiǎn)單演示了如何檢測(cè)原型對(duì)象。

var F = function(){};                                          //構(gòu)造函數(shù)

var obj = new F();                                             //實(shí)例化

var protol = Object.getPrototypeOf( obj );        //引用原型

console.log( protol.isPrototypeOf(obj) );            //true

var proto = Object.prototype;

console.log( proto.isPrototypeOf({}) );               //true

console.log( proto.isPrototypeOf([]) );               //true

console.log( proto.isPrototypeOf(//) );               //true

console.log( proto.isPrototypeOf(function(){}));   //true

console.log( proto.isPrototypeOf(null) );       //false

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部