Datepicker内联JQuery

时间:2015-04-30 16:36:30

标签: jquery html datepicker

我想在div(不是输入)中添加一个datepicker(datepicker-inline),然后我必须选择一个日期才能点击一个按钮(validate_date)。 我尝试输入,它工作,但不与div。有什么建议吗?

        //Validate Date
        $("#validate_date").click(function () {
            // Make sure select a Date

            if($("#datepicker-inline").datepicker("getDate") === null) {
                $('.notyfy_container').removeClass('hidden').show();
                notyfy(
                {
                    layout: 'bottom',
                    theme: 'default',
                    text: "<?php echo $this->lang->line('select');?>",
                    type: 'error',
                    timeout: 4000, // delay for closing event. Set false for sticky notifications
                    closeWith: ['hover'], // ['click', 'button', 'hover']
                });

            }else{
                $(".notyfy_container").hide();
                $(".step2").hide();
                $('.step3').removeClass('hidden').show();
            }
        });

0 个答案:

没有答案