两种方法有什么区别?

Meh*_*med 0 javascript oop

我可以直接调用Date对象的parse方法,如下所示:

    alert(Date.parse("March 21, 2012"));
Run Code Online (Sandbox Code Playgroud)

但是我不能这样做:

    alert(Date.getTime()); // TypeError: Date.getTime is not a function
Run Code Online (Sandbox Code Playgroud)

这就是我如何运作:

    alert(new Date().getTime()); // works well
Run Code Online (Sandbox Code Playgroud)

那么为什么我不能像Date.parse()那样直接调用Date.getTime()?

基础问题:我编写了一个类,我想直接使用它的一些方法,如上面的Date.parse().

Amb*_*ber 6

getTimeDate.prototype,在构造new Date()对象时使用.

parseDate本身就是直接而不是从构造的对象中调用的.

这是一篇关于JavaScript原型的文章,供您阅读.