jQuery:datepicker,自动点击/选择日期

时间:2012-01-30 22:33:57

标签: jquery datepicker

我有这个:

    <script>
    $(function() {
        $( "#datepicker" ).datepicker({
         dateFormat : "yy-mm-dd",
          onSelect: function(dateText) {
            $.post('/admin/deals/booking/', 
            { date: dateText }, function(data) {

                if(data != '0')
                {
                    $('input[name=book_date]').val(dateText);
                    $('#results').html(data);
                    $('.current_text').html(dateText);
                    $('.book_deal').removeAttr("disabled");
                }
            });
          }
        });

        $( "#button" ).bind('click', function(){
});
    });
    </script>

我想按下#button时它应该激活上面的#datepicker,就像你点击了日期和所选日期2012-02-02

如何做到这一点?

3 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

根据docs,datepicker提供的是setDate方法:

$('#datepicker').datepicker('setDate', '2012-02-02')

答案 2 :(得分:0)

而不是

$( "#datepicker" ).datepicker({---});

$( "#button" ).datepicker({---});