打印本文 打印本文 关闭窗口 关闭窗口
Showdate函数显示各种英文日期
作者:武汉SEO闵涛  文章来源:敏韬网  点击数738  更新时间:2009/4/23 11:23:01  文章录入:mintao  责任编辑:mintao

用法:

Showdate ( [date object|string], [day string], [month string], [date string], [year string], [delimeter string] )

Date:- Javascript date object in the form new Date(), new Date(1982,06,30).

Day:- Day string in the form "dddd" or "ddd".

Month:- Month string in the form "mmmm", "mmm", "mm".

Date:- Date string in the form "dddd", "ddd", "dd", "d".

Year:- Year string in the form "yyyy", "yy".

例子                                                           效果
Showdate(new Date(), 'dddd', 'mmm', 'dd', 'yyyy', '-')            Tuesday, May-24-2005 
Showdate(new Date(), 'dd', 'mm', 'dd', 'yyyy', '.')                  2405.24.2005 
Showdate(new Date(2001,11,25), 'dddd', 'mmm', 'dd', 'yy', ' ') Tuesday, Dec 25 01

打印本文 打印本文 关闭窗口 关闭窗口