Home  >  Q&A  >  body text

javascript - How does the daterangepicker calendar plug-in change the time period position?

How does the daterangepicker calendar plug-in change the time period position?

I want to put this shortcut time period on the left. Used 'open':'left'The parameter does not work

This is my calling code:

 $('#cjsj').daterangepicker({
                                maxDate : moment(),  
                                showDropdowns : true,
                                showWeekNumbers : false, 
                                timePicker12Hour : false, 
                                ranges : {
                                    '今日': [moment().startOf('day'), moment()],
                                    '昨日': [moment().subtract('days', 1).startOf('day'), moment().subtract('days', 1).endOf('day')],
                                    '最近7日': [moment().subtract('days', 6), moment()],
                                    '最近30日': [moment().subtract('days', 29), moment()]
                                },
                                    locale : {
                                    applyLabel : '确定',
                                    cancelLabel : '取消',
                                    fromLabel : '起始时间',
                                    toLabel : '结束时间',
                                    customRangeLabel : '自定义',
                                    daysOfWeek : [ '日', '一', '二', '三', '四', '五', '六' ],
                                    monthNames : [ '一月', '二月', '三月', '四月', '五月', '六月',
                                            '七月', '八月', '九月', '十月', '十一月', '十二月' ],
                                    firstDay : 1
                                }
                                }, function(start, end, label) {

                    console.log(start.toISOString(), end.toISOString(), label);

                  });

Thanks

高洛峰高洛峰2686 days ago547

reply all(1)I'll reply

  • ringa_lee

    ringa_lee2017-05-19 10:41:33

    Did you lose your s?

    opens : 'left',

    reply
    0
  • Cancelreply