如何格式化 jQueryUI 日期选择器日历的年份?

发布于 2024-11-17 07:53:54 字数 221 浏览 1 评论 0原文

我可以通过 MonthNames 选项格式化日历顶部的月份。
但我不知道如何格式化年份。

我想将以下演示日历中的“June 2011”隐藏为“June 2011y”。
http://jqueryui.com/demos/datepicker/

I can format month which is on the top of calendar by monthNames option.
But I don't know how to format year.

I want to covert "June 2011" in the following demo calendar to like "June 2011y".
http://jqueryui.com/demos/datepicker/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

热情消退 2024-11-24 07:53:55

JSFiddle 示例

jQueryUI 文档

  • 使用指定的yearSuffix选项初始化日期选择器:

    $( ".selector" ).datepicker({ye​​arSuffix: 'CE' });
    
  • 在初始化后获取或设置yearSuffix选项:

    //getter
    var YearSuffix = $( ".selector" ).datepicker( "option", "yearSuffix" );
    
    //设置器
    $( ".selector" ).datepicker( "option", "yearSuffix", 'CE' );
    

JSFiddle Example

In the jQueryUI documentation:

  • Initialize a datepicker with the yearSuffix option specified:

    $( ".selector" ).datepicker({ yearSuffix: 'CE' });
    
  • Get or set the yearSuffix option, after init:

    //getter
    var yearSuffix = $( ".selector" ).datepicker( "option", "yearSuffix" );
    
    //setter
    $( ".selector" ).datepicker( "option", "yearSuffix", 'CE' );
    
满身野味 2024-11-24 07:53:55

http://docs.jquery.com/UI/Datepicker/formatDate

代码示例

Initialize a datepicker with the dateFormat option specified.
$( ".selector" ).datepicker({ dateFormat: 'yy-mm-dd' });
Get or set the dateFormat option, after init.
//getter
var dateFormat = $( ".selector" ).datepicker( "option", "dateFormat" );
//setter
$( ".selector" ).datepicker( "option", "dateFormat", 'yy-mm-dd' );

http://docs.jquery.com/UI/Datepicker/formatDate

Code examples

Initialize a datepicker with the dateFormat option specified.
$( ".selector" ).datepicker({ dateFormat: 'yy-mm-dd' });
Get or set the dateFormat option, after init.
//getter
var dateFormat = $( ".selector" ).datepicker( "option", "dateFormat" );
//setter
$( ".selector" ).datepicker( "option", "dateFormat", 'yy-mm-dd' );
尽揽少女心 2024-11-24 07:53:55
$("#datepicker").datepicker({
    numberOfMonths: 2,
    showMonthAfterYear: true,
    yearSuffix: "Year", //this is what you are looking for
}

});
$("#datepicker").datepicker({
    numberOfMonths: 2,
    showMonthAfterYear: true,
    yearSuffix: "Year", //this is what you are looking for
}

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文