微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

迷惑javascript的构造函数和原型?

function MyObject(){}
Array.prototype={};
MyObject.prototype={};
var a=new Array();
var b=new MyObject();
alert(a.constructor==Array);//true
alert(b.constructor==MyObject);//false

解决方法

Array.prototype是一个不可写的属性.

因此,您的任务:

Array.prototype = {}

…没有成功,因此它的.constructor属性没有改变.

15.4.3.1 Array.prototype

The initial value of Array.prototype is the Array prototype object (15.4.4).

This property has the attributes { [[Writable]]: false,[[Enumerable]]: false,[[Configurable]]: false }

…而使用自定义构造函数,您可以分配不同的原型对象,因此您已经覆盖了通过.constructor引用构造函数的原始对象.

原文地址:https://www.jb51.cc/js/150757.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐