Javascript库创建日历uri /链接到谷歌,雅虎,Outlook,iCal?

问题描述 投票:1回答:2

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

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

谢谢

calendar yahoo javascript icalendar google-calendar-api
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"

0
投票

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

但是iCal不包含在此库中,您需要明确添加它。

© www.soinside.com 2019 - 2024. All rights reserved.