Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将jquery-timepicker与引导程序一起使用。它工作正常,除非时间选择器输入在引导模式中。
时间列表没有获得点击事件,尽管视觉上一切看起来都很好(它的 z-index 比模态和覆盖层更高。滚动和悬停样式工作正常)。
该问题已在http://jsfiddle.net/Qkgxu/1/转载
这是时间选择器的错误,现在已修复。
这是时间选择器和模式的问题。
我找到的解决方案是:
寻找 showWidget 函数,在这个函数里面你必须替换
this.$element.trigger('show');
有了这个
if (this.template === 'modal) { this.$element.trigger('show'); }