码迷,mamicode.com
首页 > 其他好文 > 详细

为对象添加一个新的方法

时间:2017-03-04 17:02:55      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:seconds   date()   second   成员   turn   prot   调用   ret   get   

例定义一个方法,为Date对象添加一个新的成员方法,转换为形如 y-m-d<br>h:m:s

Date.prototype.stringify = function(){
  var s= this.getFullYear()+‘-‘;
     s+= (this.getMonth()+1)+‘-‘;
     s+= this.getDate()+‘ ‘;
     s+= this.getHours()+‘:‘;
     s+= this.getMinutes()+‘:‘;
     s+= this.getSeconds();
  return s;
}

Date对象可以直接调用stringify()方法

为对象添加一个新的方法

标签:seconds   date()   second   成员   turn   prot   调用   ret   get   

原文地址:http://www.cnblogs.com/7662-scy/p/6501852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!