为对象添加一个新的方法
Posted 橙子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为对象添加一个新的方法相关的知识,希望对你有一定的参考价值。
例定义一个方法,为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()方法
以上是关于为对象添加一个新的方法的主要内容,如果未能解决你的问题,请参考以下文章