您好我对这个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
。如何使它工作?
答案 0 :(得分:1)
您无法使用Datepicker
,因为它已包含在插件名称空间中。
你应该使用它:
$('#date').datepicker(options);
并删除data-datepicker
属性,如:
<input id="date" type="text"/>
对于每个人的信息,这是插件的来源:https://github.com/twitter/bootstrap/pull/657