js instanceof运算符时间:2023-03-09 23:55:15 a instanceof B; instanceof检测对象a的原型链中有没有构造函数B.prototype 如下: function In (a, B) { var p = a.__proto__; if (p != null ) { if(p == B.prototype) { return true; } p = p.__proto__; } return false; }