jquery时间格式显示为2009-09-09这样的,请问可以吗,dateformat:怎么写,'我想要显示日期加时间
展开全部
public static void main(String[] args) {
Date date=new Date();
date.getTime();
System.out.println(date);
System.currentTimeMillis();
SimpleDateFormat sdf=new SimpleDateFormat("",Locale.SIMPLIFIED_CHINESE);
sdf.applyPattern("yyyy-MM-dd HH:mm:ss");
String time1=sdf.format(new Date());
System.out.println("---------");
String time2=sdf.format(new Date());
System.out.println(time1);
System.out.println(time2);
}
Date date=new Date();
date.getTime();
System.out.println(date);
System.currentTimeMillis();
SimpleDateFormat sdf=new SimpleDateFormat("",Locale.SIMPLIFIED_CHINESE);
sdf.applyPattern("yyyy-MM-dd HH:mm:ss");
String time1=sdf.format(new Date());
System.out.println("---------");
String time2=sdf.format(new Date());
System.out.println(time1);
System.out.println(time2);
}
追问
$(document).ready(function(){
$('#txtDt').datepick({
dateFormat: 'yy-mm-dd',
showStatus: true,
showOn: "both",
gotoCurrent:true,
buttonImage: "/HR_Personnel/jquery-datepick/datePickerjquery.gif"
});
});
是在这里写
dateFormat: 'yy-mm-dd'
追答
是的 dateFormat 定义你自己想要显示的格式
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询