将日期转换为可读
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将日期转换为可读相关的知识,希望对你有一定的参考价值。
From webworks, book "CMS Design Using php and jQuery", page 93
function convert_date_to_human_readable(){ var $this=$(this); var id='date-input-'+Math.random().toString() .replace(/./,''); var dparts=$this.val().split(/-/); $this .datepicker({ dateFormat:'yy-mm-dd', modal:true, altField:'#'+id, altFormat:'DD, d MM, yy', onSelect:function(dateText,inst){ this.value=dateText; } }); var $wrapper=$this.wrap( '<div style="position:relative" />'); // Usage this in html,php //<input name="associated_date" class="date-human" value="',$page['associated_date'],'" /> //... var $input=$('<input id="'+id+'" class="date-human-readable" value="'+date_m2h($this.val())+'" />'); $input.insertAfter($this); $this.css({ 'position':'absolute', 'opacity':0 }); $this .datepicker( 'setDate', new Date(dparts[0],dparts[1]-1,dparts[2]) ); } $(function(){ $('input.date-human').each(convert_date_to_human_readable); });
以上是关于将日期转换为可读的主要内容,如果未能解决你的问题,请参考以下文章