1

我见过一个非常具体和专业的网页小部件(例如http://whatsnextlectures-work.eventbrite.com/和 meetup.com)。请帮我找到创建链接的库。

我看过Need a service that build calendar (iCal, Outlook) links,但这个答案似乎解决了对屏幕日历的需求,而不仅仅是链接。

谢谢

4

2 回答 2

1

或者,您可以在下面创建注册表项和锚链接/按钮以打开 Outlook 日历

下面是标记

<button id="outlookCalendarBtn" onclick="window.open('outlookwebcal:')">
   Open Outlook Calendar
</button>

在下面创建注册表项

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\outlookwebcal]
@="URL:Outlook Add Internet Calendar"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\outlookwebcal\shell]
@="open"

[HKEY_CLASSES_ROOT\outlookwebcal\shell\open]

[HKEY_CLASSES_ROOT\outlookwebcal\shell\open\command]
@="\"C:\\Program Files\\Microsoft Office\\root\\office16\\Outlook.exe\" /select outlook:calendar"
于 2018-09-02T13:30:55.557 回答
0

即使我在寻找同一个图书馆 Mr.Richard 但在达到 3 天后我终于找到了这个。http://tardate.blogspot.com/2010/10/add-to-calendar-with-jquery-widget.html

但 iCal 不包含在此库中,您需要显式添加它。

于 2011-03-17T04:43:04.350 回答