将日期转换为可读

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将日期转换为可读相关的知识,希望对你有一定的参考价值。

From webworks, book "CMS Design Using php and jQuery", page 93
  1. function convert_date_to_human_readable(){
  2. var $this=$(this);
  3. var id='date-input-'+Math.random().toString()
  4. .replace(/./,'');
  5. var dparts=$this.val().split(/-/);
  6. $this
  7. .datepicker({
  8. dateFormat:'yy-mm-dd',
  9. modal:true,
  10. altField:'#'+id,
  11. altFormat:'DD, d MM, yy',
  12. onSelect:function(dateText,inst){
  13. this.value=dateText;
  14. }
  15. });
  16. var $wrapper=$this.wrap(
  17. '<div style="position:relative" />');
  18. // Usage this in html,php
  19. //<input name="associated_date" class="date-human" value="',$page['associated_date'],'" />
  20. //...
  21.  
  22. var $input=$('<input id="'+id+'" class="date-human-readable"
  23. value="'+date_m2h($this.val())+'" />');
  24. $input.insertAfter($this);
  25. $this.css({
  26. 'position':'absolute',
  27. 'opacity':0
  28. });
  29. $this
  30. .datepicker(
  31. 'setDate', new Date(dparts[0],dparts[1]-1,dparts[2])
  32. );
  33. }
  34. $(function(){
  35. $('input.date-human').each(convert_date_to_human_readable);
  36. });

以上是关于将日期转换为可读的主要内容,如果未能解决你的问题,请参考以下文章

Android将gmt时间转换为可读日期

PHP 将日期/时间转换为可读格式。

将日期转换为可读

将日期从 xml 转换为可读格式

将日期/时间转换为可读格式。

如何使用 XSLT 将刻度转换为可读的日期时间?