0

我想使用这个功能: http: //keith-wood.name/datepickBasics.html

文档: http: //keith-wood.name/datepick.html

如何在我的输入字段中实现它?

            <div class="control-group">
                <label class="control-label" for="input01">Registration Date</label>
                <div class="controls">
                    <input type="text" class="input-xlarge" id="input01"
                        name="regDate">
                </div>
            </div>

根据 datePicker 文档,它说:

将日期选择器功能连接到您的输入字段或部门/跨度。

$(selector).datepick();

您可以在此过程中包含自定义设置。

$(selector).datepick({dateFormat: 'yyyy-mm-dd'});
4

3 回答 3

0

你的选择器变量设置了吗?

如果没有,你需要使用类似的东西:

$("#ID_SELECTOR").datepick();

或者

$(".CLASS_SELECTOR").datepick();

作为一个建议,为什么不使用官方的 jQuery datepicker 库呢?

于 2012-11-06T15:01:32.730 回答
0

这应该把它放在你的输入上..看到'#input01',它告诉日期选择器应用于你的代码中id为input01的元素

$('#input01').datepick();

此外,您可能想查看https://github.com/eternicode/bootstrap-datepicker,因为它是一个引导友好的日期选择器,并且融合得很好。

于 2012-11-07T09:28:00.400 回答
0

您应该将函数调用的“选择器”部分替换为实际的 CSS 选择器。在你的情况下使用

$("#input01").datepick({dateFormat: 'yyyy-mm-dd'});
于 2012-11-06T15:00:08.533 回答