我有以下函数,我将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
标记内。可能是原因吗?
答案 0 :(得分:1)
检查您的图片网址 或使用img url(http://jqueryui.com/resources/demos/datepicker/images/calendar.gif)
上的工作代码buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",