需要在下面的Jquery代码中更改日期格式

时间:2014-06-04 13:09:39

标签: jquery

我在程序中使用以下代码来创建一个To and From日期,我想要更改我的 显示日期格式(当前格式:mm / dd / yyyy符合我的要求:dd / mm / yyyy)

<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>

<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>


jQuery(function(){
    jQuery('#startDate').datepicker({
        beforeShow : function(){
            jQuery( this ).datepicker('option','maxDate', jQuery('#endDate').val() );
        }
    });
    jQuery('#endDate').datepicker({
        beforeShow : function(){
            jQuery( this ).datepicker('option','minDate', jQuery('#startDate').val() );
        }
    });
})
  </script>
  </head>
  <body>

  <p>From Date: <input type="text" id="startDate"> To Date: <input type="text" id="endDate" onchange=""></p>


 </body>
 </html>

感谢Adv!

1 个答案:

答案 0 :(得分:0)

您可以在.datepicker()

中使用dateFormat: "dd/mm/yy"

类似

.datepicker({
    dateFormat: "dd/mm/yy"
})