编程语言
首页 > 编程语言> > javascript-FullCalendar,可能设置为false,但允许选择广告位

javascript-FullCalendar,可能设置为false,但允许选择广告位

作者:互联网

我正在用FullCalendar进行应用.

我注意到,通过将selectable设置为true,用户可以选择不需要的多个星期或时隙.另一方面,当我将selectable设置为false时,那么我将无法再使用当用户选择一个时隙时要触发的select动作.有什么方法可以使可选功能保持为假,但每个时隙仍然可以自行选择,而不是作为时隙组的一部分.

这是我的代码,通过PHP作为数组传递:

'options'=>array(
'header'=>array(
    'left'=>'prev,next,today',
    'center'=>'title',
    'right'=> 'month,agendaWeek,agendaDay',
),
'minTime' => '09:00:00',
'maxTime' => '20:00:00',
'slotDuration' => '01:00:00',
'slotEventOverlap' => false,
'defaultTimedEventDuration' => '01:00:00',
'allDaySlot' => false,
'allDay' => false,
'lazyFetching'=>true,
'weekends' => false,
'selectable' => true,
'height' => 'auto',
'contentHeight' => '150',
// 'selectHelper' => true,
// 'events'=>array(), // pass array of events directly
'select' => new CJavaScriptExpression("function(start, end, jsEvent, view) {
                    var currdisplay = view.name;
                    var check = Date.parse(start) / 1000;
                    var today = Date.parse(new Date()) / 1000;
                    if (currdisplay != 'month' && check >= today) {
                        var start1 = Date.parse(start) / 1000;
                        var end = Date.parse(start) / 1000 + 3600;
                        window.location.href = \"www.somelink.com/?from=\" + start1 + \"&to=\" + end;
                        }}"),
'dayClick' => new CJavaScriptExpression("function(date, jsEvent, view) {
                    var currdisplay = view.name;
                    if (currdisplay == 'month') {
                        $('.calendar').fullCalendar('gotoDate', date);
                        $('.calendar').fullCalendar('changeView', 'agendaWeek');
                    }}"),

我目前有一个修复程序,您可能会在代码块中看到:

var start1 = Date.parse(start) / 1000;
var end = Date.parse(start) / 1000 + 3600;

这两行代码可确保如果用户选择5个时隙,则将结束时间设置为开始时间后1小时(3600秒),而不是5小时后,但是我对这种解决方案不满意,因为我找不到它很干净,我不喜欢该可选功能仍然可用.

解决方法:

不完善的时隙解决方案:

这对您来说足够好吗?

http://jsfiddle.net/3E8nk/739/

select: (function() {
    var humanSelection = true;
    return function(start, end, jsEvent, view) {
        if(humanSelection) {
            humanSelection = false;
            $('#calendar').fullCalendar('select', start);
            humanSelection = true;
        }
    };
})(),

几天的解决方案:

尝试使用“单击白天”将背景颜色设置为所需的颜色.

See fiddle

dayClick: (function() {
    var lastThis;
    return function(date, jsEvent, view) {
        if(lastThis)
            lastThis.css('background-color', 'white');
        lastThis = $(this);
        $(this).css('background-color', 'lightblue');
    }
})(),

标签:fullcalendar,javascript,php,jquery
来源: https://codeday.me/bug/20191121/2049297.html