使用Jquery Datepicker的getDate

时间:2010-04-01 19:14:37

标签: jquery datepicker uidatepicker jquery-ui-datepicker

我正在尝试从jquery日期选择器的实现中获取日期,将其添加到字符串并在我的div中显示生成的图像。但是有些东西不起作用。任何人都可以查看代码并查看它吗?

代码应该从日期选择器中取出日期,将其组合成一个字符串,该字符串具有显示标记所需的代码,图像位于/ image中,格式为aYY-MM-DD.png,new到了这个日期选择器,还不能完全理解它。

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.custom.css" rel="stylesheet" />  
    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.8.custom.min.js"></script>
    <script type="text/javascript">
        $(function(){
            // Datepicker
            $('#datepicker').datepicker({
                dateFormat: 'yy-mm-dd',
                inline: true,
                minDate: new Date(2010, 1 - 1, 1),
                maxDate:new Date(2010, 12 - 1, 31),
                altField: '#datepicker_value',  
            });             
            //hover states on the static widgets
            $('#dialog_link, ul#icons li').hover(
                function() { $(this).addClass('ui-state-hover'); }, 
                function() { $(this).removeClass('ui-state-hover'); }
            );          
        });
        //var img_date = .datepicker('getDate');
            var day1 = $("#datepicker").datepicker('getDate').getDate();                 
            var month1 = $("#datepicker").datepicker('getDate').getMonth() + 1;             
            var year1 = $("#datepicker").datepicker('getDate').getFullYear();
            var fullDate = year1 + "-" + month1 + "-" + day1;
    var str_output = "<h1><center><img src=\"/images/a" + fullDate + ".png\"></center></h1><br/><br>";
    page_output.innerHTML = str_output;
    // writing the results to the div element (page_out)
    </script>
</head>
<body style="background-color:#000;color:#fff;margin: auto auto;">



    <!-- Datepicker -->

    <div id="datepicker"></div>

    <!-- Highlight / Error -->
    <p>Date Value: <input type="text" id="datepicker_value" /></p>
    <div id="page_output" style="text-align:center; margin-top:80px; margin-bottom:20px; "></div>


</body>

5 个答案:

答案 0 :(得分:43)

我认为您希望在初始化日期选择器时添加'onSelect'事件处理程序,以便在用户选择日期时触发代码。在jsFiddle

上试一试
$(document).ready(function(){
    // Datepicker
    $('#datepicker').datepicker({
        dateFormat: 'yy-mm-dd',
        inline: true,
        minDate: new Date(2010, 1 - 1, 1),
        maxDate:new Date(2010, 12 - 1, 31),
        altField: '#datepicker_value',
        onSelect: function(){
            var day1 = $("#datepicker").datepicker('getDate').getDate();                 
            var month1 = $("#datepicker").datepicker('getDate').getMonth() + 1;             
            var year1 = $("#datepicker").datepicker('getDate').getFullYear();
            var fullDate = year1 + "-" + month1 + "-" + day1;
            var str_output = "<h1><center><img src=\"/images/a" + fullDate +".png\"></center></h1><br/><br>";
            $('#page_output').html(str_output);
        }
    });
});

答案 1 :(得分:1)

这一行看起来有问题:

page_output.innerHTML = str_output;

您可以在jQuery中使用.innerHTML,或者您可以在不使用它的情况下使用它,但您必须以某种方式在语义上解决选择器:

$('#page_output').innerHTML /* for jQuery */
document.getElementByID('page_output').innerHTML /* for standard JS */

或更好

$('#page_output').html(str_output);

答案 2 :(得分:0)

$('#page_output').html(str_output);

答案 3 :(得分:0)

您可以直接使用datepicker&#39; s formatDate函数指定日期格式,而不是解析日,月和年。在我的例子中,我正在使用&#34; yy-mm-dd&#34;,但您可以使用您选择的任何格式。

$("#datepicker").datepicker({
    dateFormat: 'yy-mm-dd',
    inline: true,
    minDate: new Date(2010, 1 - 1, 1),
    maxDate: new Date(2010, 12 - 1, 31),
    altField: '#datepicker_value',
    onSelect: function(){
        var fullDate = $.datepicker.formatDate("yy-mm-dd", $(this).datepicker('getDate'));
        var str_output = "<h1><center><img src=\"/images/a" + fullDate +".png\"></center></h1><br/><br>";
        $('#page_output').html(str_output);
    }
});

答案 4 :(得分:0)

您可以使用以下行格式化jquery日期:

moment($(elem).datepicker('getDate')).format("YYYY-MM-DD");

http://momentjs.com