1

Jquery日付ピッカー用にこのコードをここに持っています

// Datepicker from jQuery UI plugin
    $birth.datepicker({
    onSelect: function(dateText, inst) { 
        $(this).parent().find("label#error").html("");
        $gender.focus();
    },
        yearRange: '1950:2006',
        changeMonth: true,
    changeYear: true,           
    showOtherMonths: true,          
    selectOtherMonths: true,
    dateFormat: 'yy-mm-dd'
    });
});

私の年のドロップダウンは 1950 年から 2006 年まで続きます。それらを逆にしたいと思います。

私は試しyearRange: '2006:1950'ましたが、何も表示されませんでした:(

これを修正する方法はありますか?

4

2 に答える 2