jquery.datepicker.js正在运行,但它没有显示样式

时间:2012-07-17 10:34:21

标签: jquery calendar datepicker

我必须使用日期选择器在输入文本中选择日期。所以我使用了jquery.datepicker.js

现在当我点击与输入框一起显示的日历图片时,页面的最底部会出现类似日历的日历,并且该日历不使用任何样式或我附加到我的html页面的任何css文件

请建议我可以提供帮助。

除了我在网上找到的 datePicker.css jquery.datePicker.js 的链接外,我已在头标记中添加了此脚本。

$(function() {
    $('.date-pick').datePicker({
        showOn: "button",
        buttonImage: "images/calendar.png",
    });

我正在使用的datepicker插件,我是从kelvinluck.com/assets/jquery/datePicker/v2/demo/index.html获取的

1 个答案:

答案 0 :(得分:1)

Aah,问题评论中的混淆 - 我也被抛出 - 是有一个名为Datepicker的标准jQueryUI插件,但这不是你正在使用的。

我要么说你的代码缺少这些行或类似于kelvinluck示例的东西:

<!-- datePicker required styles -->
<link rel="stylesheet" type="text/css" media="screen" href="styles/datePicker.css">

或服务器找不到它,因为路径不正确或者根本不在该目录中。