twitter bootstrap datepicker分配给一个字段

时间:2012-06-26 12:10:35

标签: jquery datepicker twitter-bootstrap

您好我对这个http://dl.dropbox.com/u/143355/datepicker/datepicker.html twitter bootstrap插件有疑问。

如何更改此代码,以便将datepicker设置为我想要的字段?我试过像这样的

$('[data-datepicker]').each(function(){
   new DatePicker(this, option);
});

new DatePicker($('#date'), options);

每次获得Datepicker is undefined。如何使它工作?

1 个答案:

答案 0 :(得分:1)

您无法使用Datepicker,因为它已包含在插件名称空间中。 你应该使用它:

$('#date').datepicker(options);

并删除data-datepicker属性,如:

<input id="date" type="text"/>

对于每个人的信息,这是插件的来源https://github.com/twitter/bootstrap/pull/657