-1

嗨,我对此http://dl.dropbox.com/u/143355/datepicker/datepicker.html twitter 引导插件有疑问。

如何更改此代码,以便我可以将 datepicker 分配给我想要的字段?我试过这样

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

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

而且每次都搞定Datepicker is undefined。如何使它工作?

4

1 回答 1

1

您不能使用Datepicker,因为它包含在插件命名空间中。你应该使用它:

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

并删除这样的data-datepicker属性:

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

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

于 2012-06-26T13:34:05.940 回答