首页 相关文章 prototype 的说明 js类

prototype 的说明 js类

如下是其中关于 prototype 的说明:

=====
constructor 属性

应用于: Array 对象 | Boolean 对象 | Date 对象 | Function 对象 | Number 对象 | Object 对象 | String 对象
要求
版本 2
返回对象类型原型的引用。

objectName.prototype
objectName 参数是对象的名称。

说明
用 prototype 属性提供对象的类的一组基本功能。对象的新实例“继承”赋予该对象原型的操作。

例如,要为 Array 对象添加返回数组中最大元素值的方法。要完成这一点,声明该函数,将它加入 Array.prototype,并使用它。

function array_max( ){
var i, max = this[0];
for (i = 1; i this.length; i++)
{
if (max ...[ 查看全文 ]

2016-02-19 标签:

prototype 的说明 js类的相关文章

手机页面
收藏网站 回到头部