发布网友 发布时间:2022-04-23 17:12
共6个回答
热心网友 时间:2022-04-23 01:17
请参阅以下 javaScript 代码:
调用示例:
alert(date2str(new Date(), "yyyy-MM-d h:m:s"));热心网友 时间:2022-04-23 02:35
时间定义的时候是可以同时定义它的格式的
不想输出当前时间 就自己赋值就是
热心网友 时间:2022-04-23 04:10
09:20 1970 11 09
热心网友 时间:2022-04-23 06:01
function getDateStr(date){
var year=date.getYear();
alert(year);
var month=date.getMonth()+1;
if(month<10){
month="0"+month;
}
var day=date.getDate();
if(day<10){
day="0"+day;
}
var h=date.getHours();
if(h<10){
h="0"+h;
}
var m=date.getMinutes();
if(m<10){
m="0"+m;
}
var s=date.getSeconds();
if(s<10){
s="0"+s;
}
return year+"-"+month+"-"+day+" "+h+":"+m+":"+s;
}
alert(getDateStr(new Date()));
热心网友 时间:2022-04-23 08:09
<SCRIPT LANGUAGE="JavaScript">
<!--
function datatimeNow(){
var date = new Date();
var year=date.getYear();
var month=date.getMonth()+1;
if(month<10){
month="0"+month;
}
var day=date.getDate();
if(day<10){
day="0"+day;
}
var h=date.getHours();
if(h<10){
h="0"+h;
}
var m=date.getMinutes();
if(m<10){
m="0"+m;
}
return year+"-"+month+"-"+day+" "+h+":"+m;
}
alert(datatimeNow());
//-->
</SCRIPT>
热心网友 时间:2022-04-23 10:34
自己写个方法 ,如果不想输出当前时间 ,那就传个值 不久行了吗 ?