2012-01-04 23 views

回答

2

添加以下調用FB.init前:

Date.prototype.addMonths = function(n){ 
    this.setMonth(this.getMonth()+n); 
    return this; 
}