js生成日期

来源:互联网 发布:国联证券交易软件下载 编辑:程序博客网 时间:2024/05/21 18:35

js生成日期body, p, th, td, li, ul, ol, h1, h2, h3, h4, h5, h6, pre{font-family: MS Shell Dlg;line-height: 1.4;}body, p, th, td, li, ul, ol, pre{font-size: 11px;}var tempTime = new Date();
                var msg_time = tempTime.getFullYear() + "-" + (tempTime.getMonth()+1) + "-" + tempTime.getDate() + " " + tempTime.getHours() + ":" + tempTime.getMinutes() + ":" + tempTime.getSeconds(); //获取留言的时间

 

可以使用js拼成自己想要的日期格式