根据第一个字段限制datepicker中的月份和年份

时间:2015-07-05 06:28:12

标签: jquery date datepicker

我有两个月的日期选择器字段我想限制第二个月的年度提交选择低于第一个月 - 年字段值,即第二个月 - 年仅字段显示仅在第一个月 - 年的月份之后字段请指导我如何实现这个我的脚本是

$(document).ready(
    function () {
     $('#month1_inp,#month2_inp').datepicker({
        changeMonth: true,//this option for allowing user to select month
        changeYear: true, //this option for allowing user to select from year range
        dateFormat: "yy-mm",
        showButtonPanel: true,
        yearRange: '2014:+0'
     }).focus(function() {
        var thisCalendar = $(this);
        $('.ui-datepicker-calendar').detach();
        $("#ui-datepicker-div").position({
            my: "left top",
            at: "left bottom",
            of: $(this)
        }); 
        $('.ui-datepicker-close').click(function() {
            var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
            var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
            thisCalendar.datepicker('setDate', new Date(year, month, 1));
            $(".ui-datepicker-calendar").hide();
        });
   });
});

0 个答案:

没有答案