摘要:
js中prototype用法 prototype 是在 IE 4 及其以后版本引入的一个针对于某一类的对象的方法,而且特殊的地方便在于:它是一个给类的对象添加方法的方法!这一点可能听起来会有点乱,别急,下面我便通过实例对这一特殊的方法作已下讲解: 首先,我们要先了解一下类的概念,JavaScript 本身是一种面向对象的语言,它所涉及的元素根据其属性的不同都依附于某一个特定的类。我们所常... 阅读全文
摘要:
15.2.1 The Object Constructor Called as a Function When Object is called as a function rather than as a constructor, it performs a type conversion. 15.3.3 Properties of the Function Constructor T... 阅读全文
摘要:
javascript的日期加减 function TimeCom( dateValue ) { var newCom = new Date( dateValue ); this.year = newCom.getYear(); this.month = newCom.getMonth()+1; this.day = newCom.getDate(); ... 阅读全文