jQuery UI日期选择器不会向页面添加按钮

时间:2013-07-28 19:13:36

标签: javascript jquery html jquery-ui

我有以下函数,我将input包裹在动态创建的date元素之后调用它们。

$(...)

在检查Chrome中的页面元素时,我可以看到类function addDatePicker(jQueryObject) { jQueryObject.datepicker({ showOn: "button", buttonImage: urlToImage, buttonImageOnly: true, dateFormat: 'yy-mm-dd', changeMonth: true, changeYear: true, numberOfMonths: 1, yearRange: "c-10:c+10", showButtonPanel: true }); } 已正确添加到hasDatePicker标记中。但是,包含该按钮的input标记已添加

我做错了什么? img标记位于input标记内。可能是原因吗?

1 个答案:

答案 0 :(得分:1)

检查您的图片网址 或使用img url(http://jqueryui.com/resources/demos/datepicker/images/calendar.gif

检查http://jsfiddle.net/cvPCL/

上的工作代码
buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",