gpt4 book ai didi

jquery - Fullcalendar:如何将 'link' 项目添加到自定义按钮

转载 作者:行者123 更新时间:2023-12-01 04:02:21 25 4
gpt4 key购买 nike

我对 fullcalendar 有疑问。我也是初学者。我有一个自定义按钮,我现在想要的是“单击”按钮时它应该转到新页面。它应通过正常 <html> 中的 anchor 标记添加。纽扣。但是,我无法掌握如何使用完整日历中的自定义按钮来做到这一点

完整日历脚本如下:-

    $(document).ready(function() {
$('#calendar').fullCalendar({
customButtons: {
EventButton: {
text:'Add Event',
click:function(event, jsEvent, view){
$('#modal_calendar').modal('show');
}
}
},

utc: true,
header: {
left: 'prev,next today EventButton',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
}
});

enter image description here

最佳答案

不知道我猜对了还是错了。但我假设您只想在单击“事件”按钮时导航到另一个页面。只需使用“window.location.href”属性即可。这会将您导航至此处给出的 URL。

 $(document).ready(function() {
$('#calendar').fullCalendar({
customButtons: {
EventButton: {
text:'Add Event',
click:function(event, jsEvent, view){
window.location.href = 'https://www.google.com';
}
}
},
utc: true,
header: {
left: 'prev,next today EventButton',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
})
});

关于jquery - Fullcalendar:如何将 'link' 项目添加到自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38119921/

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