JavaScript—new Date().getTime()的简写方式
原文:http://www.cssrain.cn/?p=305
(1)getTime(new Date.getTime 方法)
返回指定的 Date 对象自 1970 年 1 月 1 日午夜(通用时间)以来的毫秒数。当比较两个或更多个 Date 对象时,使用此方法表示某一特定时刻。
返回值类型:Number -- 一个整数。
(2) function now(){
return +new Date;
}
jQuery 源代码里就是使用的 +new Date ;
(3) 用来判断 google 浏览器:
if(!isNaN(Date.parse("1970.01.01"))){
alert("This is Google Chrome!");
}else{
alert("This is NOT!");
}