JavaScript Date 原型
示例
创建一个新的日期方法,为日期对象添加一个名为 myMonth 的月份名称属性
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 |
是 | 是 | 是 | 是 | 是 | 是 |
语法
Date.prototype.name = value
警告
不建议更改您不控制的对象的原型。
您不应该更改内置 JavaScript 数据类型的原型,例如
- 数字
- 字符串
- 数组
- 日期
- 布尔值
- 函数
- 对象
只更改您自己对象的原型。
prototype 属性
JavaScript 的 prototype
属性允许您为对象添加新属性
示例
function Person(first, last, age, eyecolor) {
this.firstName = first;
this.lastName = last;
this.eyeColor = eyecolor;
}
Person.prototype.nationality = "English";
自己尝试 »