datepicker codeigniter 2.2问题

我想尝试将jquery datepicker集成到我的codeigniter项目..问题是我无法让它工作..我的源代码来自http://view.jquery.com/tags/ui/latest/demos/functional /#ui.datepicker ok inheritance我的代码:

视图:

 $("#formatted").datepicker({ dateFormat: $.datepicker.ISO_8601, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true });  

编辑我已经添加了所有的js源,但它仍然无法正常工作

            

编辑为datepicker创建了一个示例视图页面..即使图像的链接不起作用仍然无法正常工作。

                 $("#formatted").datepicker({ dateFormat: $.datepicker.ISO_8601, showOn: "both", buttonImage: "http://sofzh.miximages.com/php/calendar.gif", buttonImageOnly: true });  

您需要加载jQuery UI以使用日期选择器

https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.js

别忘了图像和CSS:

http://jqueryui.com/download

在开始使用之前,您需要包含jquery。 尝试将JS代码移动到jquery标记下面。

正如Wes所说,您还需要包含jquery UI datepicker组件。

此外,这可能是一个错字,你的标签说“sricpt”而不是“脚本”。

并且不要忘记添加base_url(); 到你的js路径

例如