jQuery:http ://trentrichardson.com/examples/timepicker/
用户更改时间后,文本字段显示为 20120625 122900。
我想更改 20120625122900 的格式,日期和时间之间没有空格。
谁能提供一种显示我想要的格式的好方法?
jQuery:http ://trentrichardson.com/examples/timepicker/
用户更改时间后,文本字段显示为 20120625 122900。
我想更改 20120625122900 的格式,日期和时间之间没有空格。
谁能提供一种显示我想要的格式的好方法?
<script type="text/javascript">
$(function(){
// $("#datepicker").datepicker();
$("#datepicker").datetimepicker(
{
changeMonth: true,
changeYear: true,
timeFormat: 'hhmm',
showSecond: false,
dateFormat:'ymmdd',
separator: ''
});
//$('#datepicker').datetimepicker({
//altField: "#alt_example_4_alt",
//altFieldTimeOnly: false ,
//timeFormat: 'hhmm' ,
//dateFormat:'ymmdd'
//});
});
</script>
在github repo中检出这一行。
如果你改变它,''
它应该可以解决问题。