-1

Jquery UI 日期选择器不适用于 dd.mm.yyyy 格式。有什么办法让它工作吗?

请测试

Date 1: <input type="text" name="date1" id="date1" class="date" value="">
Date 2: <input type="text" name="date2" id="date2" class="date" value="">
$(document).ready(function(){ 
$('.date').each(function(){
        $(this).datepicker({ changeMonth: true,changeYear: true,maxDate: "+0D"});
        $(this).datepicker( "option", "dateFormat", "dd.mm.yyyy" );
    });  });

http://jsfiddle.net/sateeshchandrach/T2u5v/3/

抱歉再次更新了问题,有什么方法可以让 Jquery UI 使用 4y 的日期格式。

4

2 回答 2

1

您的日期格式错误。

JS:

$( "#datepicker" ).datepicker();
$( "#datepicker" ).datepicker( "option", "dateFormat", "dd.mm.yy" );

HTML

<p>Date: <input type="text" id="datepicker" size="30" /></p>

小提琴示例:http: //jsfiddle.net/9EhDx/

可以在 JQuery formatdate文档中找到有效日期格式字符串的列表。

The format can be combinations of the following:
    d - day of month (no leading zero)
    dd - day of month (two digit)
    o - day of the year (no leading zeros)
    oo - day of the year (three digit)
    D - day name short
    DD - day name long
    m - month of year (no leading zero)
    mm - month of year (two digit)
    M - month name short
    MM - month name long
    y - year (two digit) 
    yy - year (four digit)
    @ - Unix timestamp (ms since 01/01/1970)
    ! - Windows ticks (100ns since 01/01/0001)
    '...' - literal text
    '' - single quote
    anything else - literal text
于 2013-01-12T00:20:46.643 回答
1

您可以将自己的自定义格式传递给 Jquery UI。

在您的 dateFormat 中,您使用的是 YYYY 而不是 YY,

http://docs.jquery.com/UI/Datepicker/formatDate上的文档包含正确的格式:

y - 年(两位数) yy - 年(四位)

您的代码应该是:

前任:

$(document).ready(function(){ 
   $("#date").datepicker({ changeMonth: true,changeYear: true,maxDate: "+0D",dateFormat: "dd.mm.yy" });
  });

http://jsfiddle.net/T2u5v/4/

于 2013-01-12T00:24:21.893 回答