bootstrap的组件DateTimePicker下载示例的清空按钮不好使,为什么啊

从bootstrap中文网 http://www.bootcss.com/p/boots ... x.htm 上下载了DateTimePicker组件,里面有案例,打开Index示例,选择日期Calendar好使,但清空日期的×按钮点击没有反应,但在Bootstrap中文网上的示例中点击清空按钮就好使,为什么啊?难道下载后的JS和他网上示例的JS不一样?
已邀请:

dipper06

赞同来自:

终于找到问题的所在了。
DateTimePicker的JS中定义清空按钮时是这样写的
this.componentReset = this.element.is('.date') ? ( this.bootcssVer == 3 ? this.element.find('.input-group-addon .glyphicon-remove .fa-times').parent() : this.element.find('.add-on .icon-remove .fa-times').parent()) : false;他是找的'.input-group-addon .glyphicon-remove .fa-times'的父节点

但实际清空按钮是这样的<span class="input-group-addon"><span class="glyphicon glyphicon-remove" ></span></span>
清空按钮没有引用'fa-times'这个Class。

解决办法要不修改JS,修改为this.componentReset = this.element.is('.date') ? ( this.bootcssVer == 3 ? this.element.find('.input-group-addon .glyphicon-remove') : this.element.find('.add-on .icon-remove')) : false;
要不清空按钮这样定义
<span class="input-group-addon"><span class="glyphicon glyphicon-remove" ><span class="glyphicon fa-times" ></span></span></span>
官网提供的东西咋还有错呢??

要回复问题请先登录注册