随笔 - 25, 文章 - 1, 评论 - 0, 引用 - 0
数据加载中……

JavaScirpt

从Date类型中取形如 20091201 字符串

function getDate(s_date) {

    
var str_date = new Array();
    str_date.push(s_date.getFullYear());
    str_date.push(s_date.getMonth() 
< 9 ? "0" + (s_date.getMonth() + 1)
            : (s_date.getMonth() 
+ 1));
    str_date.push(s_date.getDate() 
< 10 ? "0" + s_date.getDate() : s_date
            .getDate());
    
return str_date.join("");

}

posted on 2009-12-31 14:11 至尊贝贝 阅读(128) 评论(0)  编辑  收藏 所属分类: 代码:JavaScript


只有注册用户登录后才能发表评论。


网站导航: