-1

我正在设置一个方形空间,我想使用他们拥有的日历,但我想把它放在我自己的 div 中。有谁知道我如何获得手动添加日历的代码。如果这不起作用,我可以嵌入另一个更好的日历吗?我在想也许可以试试谷歌日历,但我不确定。有什么帮助或建议吗?我只想看一个小月历

4

1 回答 1

0

您可以在此处使用名为“jquery.ui.datepicker.js”的 jquery 插件。下载基本的 jquery 和这个 js 并使用它如下。假设您的 div id 是“selectDate”

jQuery("#selectDate").datepicker({
        dateFormat: 'mm/dd/yy',
        showOn: "both",
        buttonText: "Calendar",
        minDate: currentDate,
        maxDate: lastDate,
        buttonImage:"calendar.png", // add your datepicker image
        closeText: 'X',
        showButtonPanel: true,
        buttonImageOnly: true
        });

请参阅http://jqueryui.com/datepicker/上的更多详细信息

于 2013-07-04T17:20:54.363 回答