目录

JavaScript Date prototype


示例

创建一个新的日期方法,为日期对象提供一个名为 myName 的月份名称属性:

Date.prototype.myMonth = function()
{
if (this.getMonth()==0) {return "January"};
if (this.getMonth()==1) {return "February"};
if (this.getMonth()==2) {return "March"};
if (this.getMonth()==3) {return "April"};
if (this.getMonth()==4) {return "May"};
if (this.getMonth()==5) {return "June"};
if (this.getMonth()==6) {return "July"};
if (this.getMonth()==7) {return "August"};
if (this.getMonth()==8) {return "September"};
if (this.getMonth()==9) {return "October"};
if (this.getMonth()==10) {return "November"};
if (this.getMonth()==11) {return "December"};
}

创建一个 Date 对象,然后调用 myMonth 方法:

const d = new Date();
let month = d.myMonth();
亲自试一试 »

描述

prototype允许您向日期添加新的属性和方法。

prototype是所有 JavaScript 对象都可用的属性。

浏览器支持

prototype是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes

语法

Date.prototype. name = value

警告

不建议您更改您无法控制的对象的原型。

您不应该更改内置 JavaScript 数据类型的原型,例如:

  • 数字
  • 字符串
  • 数组
  • 日期
  • 布尔值
  • 函数
  • 对象

只改变你自己对象的原型。

原型属性

JavaScriptprototypeproperty 允许您向对象添加新属性:

示例

function Person(first, last, age, eyecolor) {
  this.firstName = first;
  this.lastName = last;
  this.eyeColor = eyecolor;
}

Person.prototype.nationality = "English";
亲自试一试 »