0

尝试实现一个日期选择器并将其样式设置得更好,所以一切正常,直到我使用 buttonImage 选项,我的 assets/images 文件夹中有文件 calendar_add.png,但它不加载图像,当我查看服务器,它显示

!! Invalid request

这是我为此使用的代码。有什么建议么?

return $(this).datepicker({
    altFormat: "yy-mm-dd",
    dateFormat: "mm/dd/yy",   
    minDate: 0,   
    numberOfMonths: 2,
    showOn: "button",                                                     
    buttonImage: "<%= asset_path('calendar_add.png') %>",
    buttonImageOnly: true,
    altField: $(this).next()
});

补充一下,我也在使用 bootstrap 和 simple_form,也许这是导致问题的原因?但它似乎不应该。

谢谢!

4

1 回答 1

0

您的文件路径可能有误。资产路径是否一直进入图像文件夹?

buttonImage: "<%=asset_path('/images/calendar_add.png') %>",

于 2012-04-27T14:45:41.047 回答