会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
21天后
after-21-days
博客园
首页
新随笔
联系
管理
订阅
js 当前时间
js 当前时间
1
<
script language
=
"
JavaScript
"
>
2
Date.prototype.format
=
function
(format)
//
author: meizz
3
{
4
var
o
=
{
5
"
M+
"
:
this
.getMonth()
+
1
,
//
month
6
"
d+
"
:
this
.getDate(),
//
day
7
"
h+
"
:
this
.getHours(),
//
hour
8
"
m+
"
:
this
.getMinutes(),
//
minute
9
"
s+
"
:
this
.getSeconds(),
//
second
10
"
q+
"
: Math.floor((
this
.getMonth()
+
3
)
/
3),
//
quarter
11
"
S
"
:
this
.getMilliseconds()
//
millisecond
12
}
13
if
(
/
(y+)
/
.test(format)) format
=
format.replace(RegExp.$
1
,
14
(
this
.getFullYear()
+
""
).substr(
4
-
RegExp.$
1
.length));
15
for
(
var
k
in
o)
if
(
new
RegExp(
"
(
"
+
k
+
"
)
"
).test(format))
16
format
=
format.replace(RegExp.$
1
,
17
RegExp.$
1
.length
==
1
?
o[k] :
18
(
"
00
"
+
o[k]).substr((
""
+
o[k]).length));
19
return
format;
20
}
21
alert(
new
Date().format(
"
yyyy-MM-dd hh:mm:ss
"
));
22
<
/
script>
posted @
2009-10-15 22:03
21天后
阅读(
292
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告
2
1
天
后