我正在使用Google App Script并在Google日历中创建了一个活动......
var createdEvent = myCal.createEvent(title, starttime, endtime, {description: notes, guests: cal.getId(), location: cal.getName()});
var eventID = createdEvent.getId();
我正在尝试创建一个指向我刚刚创建的事件的超链接。有谁知道我怎么做到这一点?我一直在搜索谷歌搜索引擎和GAS文档,但无法找到任何东西。
感谢。
答案 0 :(得分:0)
嗨试试这个我已经设法使用FullCalendar并且它读取谷歌日历,你可以点击事件作为超链接:
使用此:
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=800,height=700');
$(this).css('border-color', 'red');
return false;
},