javascript的日期格式

时间:2013-02-15 20:27:45

标签: javascript jquery html

我正在显示采用以下格式的日期;

  

Sun Feb 24 2013 00:00:00 GMT-0800(太平洋标准时间)

我想要的只是Sunday February 24 2013。我怎样才能将上述日期格式化为我想要的格式?

var date = $(this).datepicker('getDate');
                  theDay = new Date(date.getFullYear(), date.getMonth(), date.getDate());

1 个答案:

答案 0 :(得分:2)

使用DatePicker

$(this).datepicker({
    dateFormat: "DD MM d yy"
});

此处示例:http://jsfiddle.net/eJseP/


按要求编辑:

<input type="text" id="myinputfield" value="" />
<script>
    $("#myinputfield").datepicker({
        dateFormat: "DD MM d yy"
    });
<script>