gpt4 book ai didi

jquery - 全日历 : replace string on event title

转载 作者:行者123 更新时间:2023-12-01 07:05:44 25 4
gpt4 key购买 nike

我试图删除事件标题中的一些字符串,仅在月 View 上,但没有成功。

eventRender: function(event, element, view) { // Modify month et week view.
if (view.type == 'month' || view.type == 'agendaWeek') {
element.find('.fc-title').html().replace('Mr.', '');
}
}

我只想在月 View 中查看名字和姓氏。

感谢您的帮助。

最佳答案

问题是因为虽然您正在进行替换,但您没有对结果字符串执行任何操作。您需要将其设置回元素的文本值。

为了使这个过程更简单,您可以为 text() 提供一个函数,如下所示:

element.find('.fc-title').text(function(i, t) {
return t.replace('Mr.', '')
});

关于jquery - 全日历 : replace string on event title,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46559691/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com