弹窗中使用laydate闪退的问题解决

给laydate添加触发的事件,闪退就是因为鼠标的mouse事件

html:

   

js:

var endDate=laydate.render({
    elem: '.laydate3',
    type: 'date',
    trigger: 'click',  //这个是重点,谷歌浏览器现在闪退就是因为鼠标的mouse事件  改成click就能解决
    range: false,
    done: function(value,date){
            if(date.year){
            startDate.config.max={
            year:date.year,
            month:date.month-1,
            date: date.date,
            hours: 0,
            minutes: 0,
            seconds : 0
            }
        }else{
            startDate.config.max={
            year:2800,
            month:date.month-1,
            date: date.date,
            hours: 0,
            minutes: 0,
            seconds : 0
            }
        }
    }
});

你可能感兴趣的:(弹窗中使用laydate闪退的问题解决)