getEvent:function(event){ }可以写成function getEvent(event){ }吗?为什么
第一个问题 可以写成那样。第二个问题 可以不写逗号
getEvent:function(event){ }是在对象中的写法,在对象中是最后一个方法时不写逗号,其他一般写逗号
额,我还有一个问题,每一个方法后面都要写一个逗号吗?像这样
getEvent:function(event){ },
preventDefault:function(event){ },