如何使用jquery在完整日历中添加子字符串功能?

时间:2014-08-12 12:41:31

标签: jquery substring fullcalendar

我有一个完整的日历功能,其中包含一些从json文件生成的事件。这些事件有很长的名字。所以我想通过使用substring(0,3)功能来剪切它。我想在事件的标题中使用这个子字符串函数。我应该在哪里添加子字符串来获取...后4个字符。

$('#calendar').fullCalendar({
//$.fn.popover.defaults.container = 'body';
            header: {
                left: 'prev,next',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            contentHeight: 300,
            height: 200 ,
            eventRender: function(event, element) {
                element.popover({
                    title: event.title,
                    placement: 'auto',
                    html: true,
                    trigger: 'hover',
                    animation:'true',
                    content: event.msg,
                    container: 'body'
                });
                $('body').on('click', function(e) {
                    if (!element.is(e.target) && element.has(e.target).length === 0 && $('.popover').has(e.target).length === 0)
                        element.popover('hide');
                });
            },
            events: eventData[i].title.substring(0,5)+'..' // not working substring function
        });

1 个答案:

答案 0 :(得分:0)

你能不能用一些CSS来实现这个目标?

.popover-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

除非标题真的很长(例如> 200个字符),在这种情况下,您可能希望首先在源处截断它。