创建一个新的日期方法,为日期对象提供一个名为 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 数据类型的原型,例如:
只改变你自己对象的原型。
JavaScriptprototype
property 允许您向对象添加新属性:
function Person(first, last, age, eyecolor) {
this.firstName = first;
this.lastName = last;
this.eyeColor = eyecolor;
}
Person.prototype.nationality = "English";
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!