2013-05-31 33 views
-3

我需要爲我的網站製作日曆功能...此功能將允許用戶在特定日期進行待辦事項。我希望它的工作類似於ical,您可以點擊日期並添加待辦事項...以及那些要在下次用戶登錄時保存的內容。如果我可以從哪裏獲得起點尋找這個我會很感激。什麼是最適合網站的日曆插件?

+0

Fullcalender非常好:http://arshaw.com/fullcalendar/ – sroes

回答

-1
<!doctype html> 

<html lang="en"> 
<head> 
    <meta charset="utf-8" /> 
    <title>jQuery UI Datepicker - Default functionality</title> 
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> 
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script> 
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> 
    <link rel="stylesheet" href="/resources/demos/style.css" /> 
    <script> 
    $(function() { 
    $("#datepicker").datepicker(); 
    }); 
    </script> 
</head> 
<body> 

<p>Date: <input type="text" id="datepicker" /></p> 


</body> 
</html> 

參考:http://jqueryui.com/datepicker/ 這是非常有效的。

相關問題