jquery全月日历能够将控件放在月份中

发布于 2024-12-22 17:39:09 字数 117 浏览 1 评论 0原文

有没有可以显示完整月份的 JQuery 插件?例如,就像在 Outlook 中一样,但我需要每天都放入一些复选框和标签,换句话说,每天都放入自定义 html。

任何帮助将不胜感激。

谢谢。

Is there a JQuery plugin that allows to display a full month? like in outlook for example, but I need to put inside each day some checkboxes and labels, in other words, custom html inside each day.

Any help will be appreciated.

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过潦 2024-12-29 17:39:09

http://arshaw.com/fullcalendar/

(我个人没有使用过这个,但看到了另一个相关问题今天就先讲到这里。)

http://arshaw.com/fullcalendar/

(I've not used this personally, but saw another question related to this previously here today.)

那片花海 2024-12-29 17:39:09

我这应该适合你:

http://www.bytecyclist.com/projects/jmonthcalendar/

我没有看到开箱即用的支持,但您绝对可以使用 jQuery 添加 html 组件。例如,表格单元格使用以下标记:

<td id="c_11272011" class="DateBox Weekend Inactive" date="11/27/2011">

您可以像这样以编程方式添加组件:

$('td[date="11/27/2011"]').append('<input type="text"/>');

希望有帮助!

I this should work for you:

http://www.bytecyclist.com/projects/jmonthcalendar/

I don't see support, out-of-the-box, but you can definitely add html components using jQuery. For example, a table cell uses the following markup:

<td id="c_11272011" class="DateBox Weekend Inactive" date="11/27/2011">

You could add a component programatically like so:

$('td[date="11/27/2011"]').append('<input type="text"/>');

Hope that helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文