在jsp页面中得到的时间:年月日时分秒,但在时间控件wdatepicker中不能显示出时分秒,只显示出年月日。求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jsp页面中得到的时间:年月日时分秒,但在时间控件wdatepicker中不能显示出时分秒,只显示出年月日。求相关的知识,希望对你有一定的参考价值。
在jsp页面中得到的时间:年月日时分秒,但在时间控件wdatepicker中不能显示出时分秒,只显示出年月日。求高手指点指点。。。
<input id="startDate" name="startDate" type="text" maxlength="10"value = '<%= 传的值%>'
size="15" readonly="readonly" onClick="WdatePicker(skin:'whyGreen',dateFmt:'yyyy-MM-dd')">
我用的是My97日期控件追问
我也用的是My97控件,不过是
'
size="15" onfocus="WdatePicker(skin:'whyGreen',dateFmt:'yyyy-MM-dd HH:mm:ss'),最后显示出来没有时分秒??
你的要求不就是不显示出时分秒吗?
追问要求是显示时分秒,但是没有显示出来
追答
function display()
WdatePicker(skin:'whyGreen',startDate:'%y-%M-%d %H:00:00',dateFmt:'yyyy-MM-dd HH:mm:ss');
这样试一下
不行,年月日都不显示了。。。
追答我这里测试正常啊,-_-!
把你代码放上来看一下
String strFirstTime="-";
Date FirstTime=rs.getFirstTime();
DateFormat df=DateFormat.getDatetimeInstance(DateFormat.DEFAULT,2,Locale.CHINA);
if(FirstTime !=null)
strFirstTime=df.format(FirstTime)
/>
最后控件中显示出的时间只有年月日,没有时分秒。
我看着没什么问题,你System.out.prinltn(strFirstTime)
调试一下
已经试过了,输出来的时间有时分秒,但是在控件中就是显示不出来时分秒
参考技术A <input type="text" id="cBirthday_" name="cBirthday_" onclick="WdatePicker(el:'cBirthday',dateFmt:'yyyyMMdd',vel:'cBirthday_')" >sql server中datetime字段只取年月日如2006-04-21,默认值如何设置?getdate()得到的是包含时分秒的时间。
我只需要年月日,不需要具体的时分秒,在数据库表的默认值处直接设置默认值,怎么设置?
参考技术A FormatDateTime(Date,vbShortDate) 转化为短日期格式 这个是你要的.FromatDateTime(Date,vbLongDate) 以长日期格式显示
FormatDateTime(Date,vbLongDate) 转化为长日期格式
FormatDateTime(Date,vbShortTime) 转化为短时间格式
FormatDateTime(Date,vbLongTime) 转化为长时间格式 参考技术B select CONVERT(varchar, getdate(), 120 )
2004-09-12 11:06:08
select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),\'-\',\'\'),\' \',\'\'),\':\',\'\')
20040912110608
select CONVERT(varchar(12) , getdate(), 111 )
2004/09/12
select CONVERT(varchar(12) , getdate(), 112 )
20040912
select CONVERT(varchar(12) , getdate(), 102 )
2004.09.12
select CONVERT(varchar(12) , getdate(), 101 )
09/12/2004
select CONVERT(varchar(12) , getdate(), 103 )
12/09/2004
select CONVERT(varchar(12) , getdate(), 104 )
12.09.2004
select CONVERT(varchar(12) , getdate(), 105 )
12-09-2004
select CONVERT(varchar(12) , getdate(), 106 )
12 09 2004
select CONVERT(varchar(12) , getdate(), 107 )
09 12, 2004
select CONVERT(varchar(12) , getdate(), 108 )
11:06:08
select CONVERT(varchar(12) , getdate(), 109 )
09 12 2004 1
select CONVERT(varchar(12) , getdate(), 110 )
09-12-2004
select CONVERT(varchar(12) , getdate(), 113 )
12 09 2004 1
select CONVERT(varchar(12) , getdate(), 114 )
11:06:08.177本回答被提问者采纳
以上是关于在jsp页面中得到的时间:年月日时分秒,但在时间控件wdatepicker中不能显示出时分秒,只显示出年月日。求的主要内容,如果未能解决你的问题,请参考以下文章
sql server中datetime字段只取年月日如2006-04-21,默认值如何设置?getdate()得到的是包含时分秒的时间。