prototype屬性可以將屬性和方法添加到您的Date()對(duì)象。
注意:prototype是一個(gè)全局屬性,幾乎所有對(duì)象(數(shù)字,數(shù)組,字符串和日期等)都可用。
Date.prototype.name = value
創(chuàng)建一個(gè)新的date方法,將month-numeric值轉(zhuǎn)換為month-name值:
Date.prototype.showMonth = function() { var arr = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec']; return arr[this.getMonth()]; };
然后創(chuàng)建一個(gè)日期,并調(diào)用showMonth()方法:
var d = new Date(); var month = d.showMonth();// calling new method
所有瀏覽器完全支持prototype屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
prototype | 是 | 是 | 是 | 是 | 是 |